-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
You can use "cache", "driver", "connection", "table" to override configuration.
- Loading branch information
Showing
9 changed files
with
195 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?php | ||
|
||
namespace Ycs77\LaravelWizard\Test\Stubs; | ||
|
||
use Ycs77\LaravelWizard\Http\Controllers\WizardController; | ||
|
||
class WizardControllerOptionsStub extends WizardController | ||
{ | ||
/** | ||
* The wizard name. | ||
* | ||
* @var string | ||
*/ | ||
protected $wizardName = 'test'; | ||
|
||
/** | ||
* The wizard options. | ||
* | ||
* Options reference in Ycs77\LaravelWizard\Wizard::$optionsKeys. | ||
* | ||
* @var array | ||
*/ | ||
protected $wizardOptions = [ | ||
'cache' => false, | ||
]; | ||
|
||
/** | ||
* The wizard steps instance. | ||
* | ||
* @var array | ||
*/ | ||
protected $steps = [ | ||
StepFirstStub::class, | ||
StepSecondStub::class, | ||
]; | ||
|
||
/** | ||
* Get controller main class name. | ||
* | ||
* @return string | ||
*/ | ||
public function getControllerClass() | ||
{ | ||
return static::class; | ||
} | ||
} |
Oops, something went wrong.