Skip to content

Commit

Permalink
Update CliMenuBuilder namepace in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AydinHassan committed May 14, 2018
1 parent a79209a commit 29d0c48
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ below we change the background color on the flash to green.

```php
use PhpSchool\CliMenu\CliMenu;
use PhpSchool\CliMenu\CliMenuBuilder;
use PhpSchool\CliMenu\Builder\CliMenuBuilder;

require_once(__DIR__ . '/../vendor/autoload.php');

Expand Down Expand Up @@ -768,7 +768,7 @@ text can be customised.

```php
use PhpSchool\CliMenu\CliMenu;
use PhpSchool\CliMenu\CliMenuBuilder;
use PhpSchool\CliMenu\Builder\CliMenuBuilder;

require_once(__DIR__ . '/../vendor/autoload.php');

Expand Down Expand Up @@ -808,7 +808,7 @@ placeholder text (the default is empty) and the validation failed text (the defa
<?php

use PhpSchool\CliMenu\CliMenu;
use PhpSchool\CliMenu\CliMenuBuilder;
use PhpSchool\CliMenu\Builder\CliMenuBuilder;

require_once(__DIR__ . '/../vendor/autoload.php');

Expand Down Expand Up @@ -844,7 +844,7 @@ When entering a number you can use the up/down keys to increment and decrement t
<?php

use PhpSchool\CliMenu\CliMenu;
use PhpSchool\CliMenu\CliMenuBuilder;
use PhpSchool\CliMenu\Builder\CliMenuBuilder;

require_once(__DIR__ . '/../vendor/autoload.php');

Expand Down Expand Up @@ -881,7 +881,7 @@ Ask for a password with the default validation:
<?php

use PhpSchool\CliMenu\CliMenu;
use PhpSchool\CliMenu\CliMenuBuilder;
use PhpSchool\CliMenu\Builder\CliMenuBuilder;

require_once(__DIR__ . '/../vendor/autoload.php');

Expand Down Expand Up @@ -918,7 +918,7 @@ password is longer than 20 characters.
<?php

use PhpSchool\CliMenu\CliMenu;
use PhpSchool\CliMenu\CliMenuBuilder;
use PhpSchool\CliMenu\Builder\CliMenuBuilder;

require_once(__DIR__ . '/../vendor/autoload.php');

Expand Down Expand Up @@ -951,7 +951,7 @@ Ask for a password with custom validation and set the validation failure message
<?php

use PhpSchool\CliMenu\CliMenu;
use PhpSchool\CliMenu\CliMenuBuilder;
use PhpSchool\CliMenu\Builder\CliMenuBuilder;

require_once(__DIR__ . '/../vendor/autoload.php');

Expand Down Expand Up @@ -997,7 +997,7 @@ your menu item actions like so:
<?php

use PhpSchool\CliMenu\CliMenu;
use PhpSchool\CliMenu\CliMenuBuilder;
use PhpSchool\CliMenu\Builder\CliMenuBuilder;
use PhpSchool\CliMenu\Input\Text;
use PhpSchool\CliMenu\Input\InputIO;

Expand Down Expand Up @@ -1041,7 +1041,7 @@ you can build up a `MenuStyle` object and pass it to the dialogue and input meth

```php
use PhpSchool\CliMenu\CliMenu;
use PhpSchool\CliMenu\CliMenuBuilder;
use PhpSchool\CliMenu\Builder\CliMenuBuilder;

require_once(__DIR__ . '/../vendor/autoload.php');

Expand Down

0 comments on commit 29d0c48

Please sign in to comment.