SYMBOL INDEX (810 symbols across 177 files) FILE: app/Console/Commands/Inspire.php class Inspire (line 8) | class Inspire extends Command method handle (line 29) | public function handle() FILE: app/Console/Commands/Webloyer/DiscardOldDeployments.php class DiscardOldDeployments (line 11) | class DiscardOldDeployments extends Command method __construct (line 37) | public function __construct(ProjectInterface $projectRepository) method handle (line 50) | public function handle() FILE: app/Console/Commands/Webloyer/Install.php class Install (line 14) | class Install extends Command method __construct (line 35) | public function __construct() method handle (line 48) | public function handle(AppSettingInterface $appSetting, DbSettingInter... FILE: app/Console/Kernel.php class Kernel (line 8) | class Kernel extends ConsoleKernel method schedule (line 26) | protected function schedule(Schedule $schedule) FILE: app/Entities/ProjectAttribute/ProjectAttributeEntity.php class ProjectAttributeEntity (line 9) | class ProjectAttributeEntity method getDeployPath (line 18) | public function getDeployPath() method setDeployPath (line 23) | public function setDeployPath($deployPath) FILE: app/Entities/Setting/AbstractSettingEntity.php class AbstractSettingEntity (line 5) | abstract class AbstractSettingEntity FILE: app/Entities/Setting/AppSettingEntity.php class AppSettingEntity (line 7) | class AppSettingEntity extends AbstractSettingEntity method getUrl (line 11) | public function getUrl() method setUrl (line 16) | public function setUrl($url) FILE: app/Entities/Setting/DbSettingEntity.php class DbSettingEntity (line 7) | class DbSettingEntity extends AbstractSettingEntity method getDriver (line 19) | public function getDriver() method getHost (line 24) | public function getHost() method getDatabase (line 29) | public function getDatabase() method getUsername (line 34) | public function getUsername() method getPassword (line 39) | public function getPassword() method setDriver (line 44) | public function setDriver($driver) method setHost (line 51) | public function setHost($host) method setDatabase (line 58) | public function setDatabase($database) method setUsername (line 65) | public function setUsername($username) method setPassword (line 72) | public function setPassword($password) FILE: app/Entities/Setting/MailSettingEntity.php class MailSettingEntity (line 10) | class MailSettingEntity extends AbstractSettingEntity method getDriver (line 66) | public function getDriver() method getFrom (line 71) | public function getFrom() method getSmtpHost (line 76) | public function getSmtpHost() method getSmtpPort (line 81) | public function getSmtpPort() method getSmtpEncryption (line 86) | public function getSmtpEncryption() method getSmtpUsername (line 91) | public function getSmtpUsername() method getSmtpPassword (line 96) | public function getSmtpPassword() method getSendmailPath (line 101) | public function getSendmailPath() method setDriver (line 106) | public function setDriver($driver) method setFrom (line 113) | public function setFrom(array $from) method setSmtpHost (line 120) | public function setSmtpHost($smtpHost) method setSmtpPort (line 127) | public function setSmtpPort($smtpPort) method setSmtpEncryption (line 134) | public function setSmtpEncryption($smtpEncryption) method setSmtpUsername (line 141) | public function setSmtpUsername($smtpUsername) method setSmtpPassword (line 148) | public function setSmtpPassword($smtpPassword) method setSendmailPath (line 155) | public function setSendmailPath($sendmailPath) FILE: app/Events/Event.php class Event (line 5) | abstract class Event FILE: app/Exceptions/Handler.php class Handler (line 13) | class Handler extends ExceptionHandler method report (line 37) | public function report(Exception $e) method render (line 49) | public function render($request, Exception $e) FILE: app/Http/Controllers/Auth/AuthController.php class AuthController (line 10) | class AuthController extends Controller method __construct (line 32) | public function __construct() method validator (line 43) | public function validator(array $data) method create (line 58) | public function create(array $data) method getRegister (line 73) | public function getRegister() method postRegister (line 84) | public function postRegister() FILE: app/Http/Controllers/Auth/PasswordController.php class PasswordController (line 8) | class PasswordController extends Controller method __construct (line 30) | public function __construct() FILE: app/Http/Controllers/Controller.php class Controller (line 10) | abstract class Controller extends BaseController FILE: app/Http/Controllers/DeploymentsController.php class DeploymentsController (line 14) | class DeploymentsController extends Controller method __construct (line 27) | public function __construct(ProjectInterface $project, DeploymentForm ... method index (line 43) | public function index(Request $request, Project $project) method store (line 63) | public function store(Request $request, Project $project) method show (line 92) | public function show(Project $project, Deployment $deployment) FILE: app/Http/Controllers/HomeController.php class HomeController (line 5) | class HomeController extends Controller method __construct (line 23) | public function __construct() method index (line 33) | public function index() FILE: app/Http/Controllers/ProjectsController.php class ProjectsController (line 15) | class ProjectsController extends Controller method __construct (line 37) | public function __construct(ProjectInterface $project, ProjectForm $pr... method index (line 55) | public function index(Request $request) method create (line 71) | public function create() method store (line 95) | public function store(Request $request) method show (line 114) | public function show(Project $project) method edit (line 132) | public function edit(Project $project) method update (line 162) | public function update(Request $request, Project $project) method destroy (line 181) | public function destroy(Project $project) FILE: app/Http/Controllers/RecipesController.php class RecipesController (line 13) | class RecipesController extends Controller method __construct (line 26) | public function __construct(RecipeInterface $recipe, RecipeForm $recip... method index (line 41) | public function index(Request $request) method create (line 57) | public function create() method store (line 68) | public function store(Request $request) method show (line 87) | public function show(Recipe $recipe) method edit (line 101) | public function edit(Recipe $recipe) method update (line 113) | public function update(Request $request, Recipe $recipe) method destroy (line 132) | public function destroy(Recipe $recipe) FILE: app/Http/Controllers/ServersController.php class ServersController (line 13) | class ServersController extends Controller method __construct (line 26) | public function __construct(ServerInterface $server, ServerForm $serve... method index (line 41) | public function index(Request $request) method create (line 57) | public function create() method store (line 68) | public function store(Request $request) method show (line 87) | public function show(Server $server) method edit (line 98) | public function edit(Server $server) method update (line 110) | public function update(Request $request, Server $server) method destroy (line 129) | public function destroy(Server $server) FILE: app/Http/Controllers/SettingsController.php class SettingsController (line 12) | class SettingsController extends Controller method __construct (line 14) | public function __construct() method getEmail (line 20) | public function getEmail(SettingInterface $settingRepository) method postEmail (line 28) | public function postEmail(Request $request, MailSettingForm $mailSetti... FILE: app/Http/Controllers/UsersController.php class UsersController (line 14) | class UsersController extends Controller method __construct (line 30) | public function __construct(UserInterface $user, UserForm $userForm, R... method index (line 46) | public function index(Request $request) method create (line 62) | public function create() method store (line 76) | public function store(Request $request) method show (line 95) | public function show(User $user) method edit (line 106) | public function edit(User $user) method update (line 118) | public function update(Request $request, User $user) method changePassword (line 137) | public function changePassword(User $user) method updatePassword (line 149) | public function updatePassword(Request $request, User $user) method editRole (line 168) | public function editRole(User $user) method updateRole (line 184) | public function updateRole(Request $request, User $user) method editApiToken (line 203) | public function editApiToken(User $user) method regenerateApiToken (line 216) | public function regenerateApiToken(Request $request, User $user) method destroy (line 235) | public function destroy(User $user) FILE: app/Http/Controllers/Webhook/Github/V1/DeploymentsController.php class DeploymentsController (line 12) | class DeploymentsController extends Controller method __construct (line 25) | public function __construct(ProjectInterface $project, DeploymentForm ... method store (line 38) | public function store(Request $request, Project $project) FILE: app/Http/Controllers/WelcomeController.php class WelcomeController (line 5) | class WelcomeController extends Controller method __construct (line 23) | public function __construct() method index (line 33) | public function index() FILE: app/Http/Kernel.php class Kernel (line 7) | class Kernel extends HttpKernel FILE: app/Http/Middleware/ApplySettings.php class ApplySettings (line 8) | class ApplySettings method __construct (line 12) | public function __construct(SettingInterface $settingRepository) method handle (line 24) | public function handle($request, Closure $next) FILE: app/Http/Middleware/Authenticate.php class Authenticate (line 8) | class Authenticate method handle (line 18) | public function handle($request, Closure $next, $guard = null) FILE: app/Http/Middleware/RedirectIfAuthenticated.php class RedirectIfAuthenticated (line 9) | class RedirectIfAuthenticated method __construct (line 24) | public function __construct(Guard $auth) method handle (line 36) | public function handle($request, Closure $next) FILE: app/Http/Middleware/VerifyCsrfToken.php class VerifyCsrfToken (line 8) | class VerifyCsrfToken extends BaseVerifier method handle (line 17) | public function handle($request, Closure $next) FILE: app/Http/Middleware/VerifyGithubWebhookSecret.php class VerifyGithubWebhookSecret (line 8) | class VerifyGithubWebhookSecret method __construct (line 12) | public function __construct(ProjectInterface $projectRepository) method handle (line 24) | public function handle($request, Closure $next) FILE: app/Http/Requests/Request.php class Request (line 7) | abstract class Request extends FormRequest FILE: app/Jobs/Deploy.php class Deploy (line 17) | class Deploy extends Job implements ShouldQueue method __construct (line 31) | public function __construct(Model $deployment) method handle (line 47) | public function handle(ProjectInterface $projectRepository, ServerInte... FILE: app/Jobs/Job.php class Job (line 7) | abstract class Job FILE: app/Jobs/Rollback.php class Rollback (line 17) | class Rollback extends Job implements ShouldQueue method __construct (line 31) | public function __construct(Model $deployment) method handle (line 47) | public function handle(ProjectInterface $projectRepository, ServerInte... FILE: app/Models/BaseModel.php class BaseModel (line 7) | class BaseModel extends Model method nullIfBlank (line 9) | protected function nullIfBlank($value) FILE: app/Models/Deployment.php class Deployment (line 8) | class Deployment extends BaseModel implements PresentableInterface method getPresenter (line 31) | public function getPresenter() method user (line 37) | public function user() FILE: app/Models/DeploymentPresenter.php class DeploymentPresenter (line 7) | class DeploymentPresenter extends Presenter method __construct (line 11) | public function __construct($object, $converter) method status (line 18) | public function status() method statusText (line 29) | public function statusText() method message (line 40) | public function message() method messageText (line 47) | public function messageText() FILE: app/Models/MaxDeployment.php class MaxDeployment (line 5) | class MaxDeployment extends BaseModel FILE: app/Models/Project.php class Project (line 10) | class Project extends BaseModel method setStageAttribute (line 30) | public function setStageAttribute($value) method setEmailNotificationRecipientAttribute (line 35) | public function setEmailNotificationRecipientAttribute($value) method setDaysToKeepDeploymentsAttribute (line 40) | public function setDaysToKeepDeploymentsAttribute($value) method setMaxNumberOfDeploymentsToKeepAttribute (line 45) | public function setMaxNumberOfDeploymentsToKeepAttribute($value) method setGithubWebhookSecretAttribute (line 50) | public function setGithubWebhookSecretAttribute($value) method setGithubWebhookUserIdAttribute (line 55) | public function setGithubWebhookUserIdAttribute($value) method maxDeployment (line 60) | public function maxDeployment() method deployments (line 65) | public function deployments() method recipes (line 70) | public function recipes() method githubWebhookUser (line 75) | public function githubWebhookUser() method getGithubWebhookUser (line 80) | public function getGithubWebhookUser() method getMaxDeployment (line 85) | public function getMaxDeployment() method getLastDeployment (line 90) | public function getLastDeployment() method getDeploymentByNumber (line 95) | public function getDeploymentByNumber($number) method getDeploymentsByPage (line 100) | public function getDeploymentsByPage($page = 1, $limit = 10) method getDeployments (line 109) | public function getDeployments() method deleteDeployments (line 114) | public function deleteDeployments(Collection $deployments) method getRecipes (line 125) | public function getRecipes() method addMaxDeployment (line 130) | public function addMaxDeployment(array $data = []) method addDeployment (line 135) | public function addDeployment(array $data) method updateDeployment (line 140) | public function updateDeployment(array $data) method syncRecipes (line 147) | public function syncRecipes(array $data) method updateMaxDeployment (line 156) | public function updateMaxDeployment(array $data) method getDeploymentsWhereCreatedAtBefore (line 161) | public function getDeploymentsWhereCreatedAtBefore(DateTime $date) method getDeploymentsWhereNumberBefore (line 169) | public function getDeploymentsWhereNumberBefore($number) method getSatisfyingDeployments (line 177) | public function getSatisfyingDeployments(DeploymentSpecification $spec) method serializedLobColumn (line 182) | protected function serializedLobColumn() method serializedLobSerializer (line 187) | protected function serializedLobSerializer() method serializedLobDeserializeType (line 192) | protected function serializedLobDeserializeType() FILE: app/Models/Recipe.php class Recipe (line 7) | class Recipe extends BaseModel method projects (line 17) | public function projects() method getProjects (line 22) | public function getProjects() FILE: app/Models/Server.php class Server (line 7) | class Server extends BaseModel FILE: app/Models/Setting.php class Setting (line 7) | class Setting extends BaseModel method serializedLobColumn (line 18) | protected function serializedLobColumn() method serializedLobSerializer (line 23) | protected function serializedLobSerializer() method serializedLobDeserializeType (line 28) | protected function serializedLobDeserializeType() FILE: app/Models/User.php class User (line 14) | class User extends BaseModel implements AuthenticatableContract, Authori... FILE: app/Providers/AppServiceProvider.php class AppServiceProvider (line 32) | class AppServiceProvider extends ServiceProvider method boot (line 39) | public function boot() method register (line 57) | public function register() FILE: app/Providers/AuthServiceProvider.php class AuthServiceProvider (line 8) | class AuthServiceProvider extends ServiceProvider method boot (line 25) | public function boot(GateContract $gate) FILE: app/Providers/EventServiceProvider.php class EventServiceProvider (line 8) | class EventServiceProvider extends ServiceProvider method boot (line 27) | public function boot(DispatcherContract $events) FILE: app/Providers/RepositoryServiceProvider.php class RepositoryServiceProvider (line 23) | class RepositoryServiceProvider extends ServiceProvider method boot (line 30) | public function boot() method register (line 40) | public function register() FILE: app/Providers/RouteServiceProvider.php class RouteServiceProvider (line 10) | class RouteServiceProvider extends ServiceProvider method boot (line 27) | public function boot(Router $router) method map (line 99) | public function map(Router $router) FILE: app/Repositories/AbstractConfigRepository.php class AbstractConfigRepository (line 8) | abstract class AbstractConfigRepository implements RepositoryInterface method __construct (line 21) | public function __construct(ConfigReaderInterface $reader, ConfigWrite... method byId (line 27) | public function byId($id) method byPage (line 31) | public function byPage($page = 1, $limi = 10) method all (line 35) | public function all() method create (line 39) | public function create(array $data) method update (line 43) | public function update(array $data) method delete (line 47) | public function delete($id) FILE: app/Repositories/AbstractEloquentRepository.php class AbstractEloquentRepository (line 5) | abstract class AbstractEloquentRepository implements RepositoryInterface method byId (line 15) | public function byId($id) method byPage (line 27) | public function byPage($page = 1, $limit = 10) method all (line 42) | public function all() method create (line 53) | public function create(array $data) method update (line 66) | public function update(array $data) method delete (line 81) | public function delete($id) FILE: app/Repositories/Project/EloquentProject.php class EloquentProject (line 8) | class EloquentProject extends AbstractEloquentRepository implements Proj... method __construct (line 16) | public function __construct(Model $project) method byPage (line 28) | public function byPage($page = 1, $limit = 10) FILE: app/Repositories/Project/ProjectInterface.php type ProjectInterface (line 7) | interface ProjectInterface extends RepositoryInterface FILE: app/Repositories/Recipe/EloquentRecipe.php class EloquentRecipe (line 8) | class EloquentRecipe extends AbstractEloquentRepository implements Recip... method __construct (line 16) | public function __construct(Model $recipe) method byPage (line 28) | public function byPage($page = 1, $limit = 10) FILE: app/Repositories/Recipe/RecipeInterface.php type RecipeInterface (line 7) | interface RecipeInterface extends RepositoryInterface FILE: app/Repositories/RepositoryInterface.php type RepositoryInterface (line 5) | interface RepositoryInterface method byId (line 13) | public function byId($id); method byPage (line 22) | public function byPage($page = 1, $limit = 10); method all (line 29) | public function all(); method create (line 37) | public function create(array $data); method update (line 45) | public function update(array $data); method delete (line 53) | public function delete($id); FILE: app/Repositories/Role/EloquentRole.php class EloquentRole (line 8) | class EloquentRole extends AbstractEloquentRepository implements RoleInt... method __construct (line 16) | public function __construct(Model $role) method byPage (line 28) | public function byPage($page = 1, $limit = 10) FILE: app/Repositories/Role/RoleInterface.php type RoleInterface (line 7) | interface RoleInterface extends RepositoryInterface FILE: app/Repositories/Server/EloquentServer.php class EloquentServer (line 8) | class EloquentServer extends AbstractEloquentRepository implements Serve... method __construct (line 16) | public function __construct(Model $server) method byPage (line 28) | public function byPage($page = 1, $limit = 10) FILE: app/Repositories/Server/ServerInterface.php type ServerInterface (line 7) | interface ServerInterface extends RepositoryInterface FILE: app/Repositories/Setting/AppSettingInterface.php type AppSettingInterface (line 7) | interface AppSettingInterface extends SettingInterface FILE: app/Repositories/Setting/ConfigAppSetting.php class ConfigAppSetting (line 11) | class ConfigAppSetting extends AbstractConfigRepository implements AppSe... method all (line 13) | public function all() method update (line 23) | public function update(array $data) FILE: app/Repositories/Setting/ConfigDbSetting.php class ConfigDbSetting (line 11) | class ConfigDbSetting extends AbstractConfigRepository implements DbSett... method all (line 13) | public function all() method update (line 31) | public function update(array $data) FILE: app/Repositories/Setting/ConfigMailSetting.php class ConfigMailSetting (line 11) | class ConfigMailSetting extends AbstractConfigRepository implements Mail... method all (line 13) | public function all() method update (line 43) | public function update(array $data) FILE: app/Repositories/Setting/DbSettingInterface.php type DbSettingInterface (line 7) | interface DbSettingInterface extends SettingInterface FILE: app/Repositories/Setting/EloquentSetting.php class EloquentSetting (line 10) | class EloquentSetting extends AbstractEloquentRepository implements Sett... method __construct (line 18) | public function __construct(Model $setting) method byType (line 29) | public function byType($type) method updateByType (line 62) | public function updateByType(array $data) FILE: app/Repositories/Setting/MailSettingInterface.php type MailSettingInterface (line 7) | interface MailSettingInterface extends SettingInterface FILE: app/Repositories/Setting/SettingInterface.php type SettingInterface (line 7) | interface SettingInterface extends RepositoryInterface FILE: app/Repositories/User/EloquentUser.php class EloquentUser (line 8) | class EloquentUser extends AbstractEloquentRepository implements UserInt... method __construct (line 16) | public function __construct(Model $user) method byPage (line 28) | public function byPage($page = 1, $limit = 10) FILE: app/Repositories/User/UserInterface.php type UserInterface (line 7) | interface UserInterface extends RepositoryInterface FILE: app/Services/Api/JsonRpc.php class JsonRpc (line 10) | class JsonRpc method __construct (line 23) | public function __construct(ProjectInterface $project, DeploymentForm ... method deploy (line 35) | public function deploy($project_id) method rollback (line 60) | public function rollback($project_id) FILE: app/Services/Api/Middleware/Authenticate.php class Authenticate (line 10) | class Authenticate implements MiddlewareInterface method __construct (line 14) | public function __construct(Request $request) method execute (line 19) | public function execute($username, $password, $procedureName) FILE: app/Services/Config/ConfigReaderInterface.php type ConfigReaderInterface (line 5) | interface ConfigReaderInterface method getConfig (line 13) | public function getConfig($name); FILE: app/Services/Config/ConfigWriterInterface.php type ConfigWriterInterface (line 5) | interface ConfigWriterInterface method setConfig (line 14) | public function setConfig($name, $value); FILE: app/Services/Config/DotenvReader.php class DotenvReader (line 8) | class DotenvReader implements ConfigReaderInterface method __construct (line 14) | public function __construct(FilesystemInterface $fs, $path) method getConfig (line 26) | public function getConfig($name) method nullIfBlank (line 40) | protected function nullIfBlank($value) FILE: app/Services/Config/DotenvWriter.php class DotenvWriter (line 8) | class DotenvWriter implements ConfigWriterInterface method __construct (line 14) | public function __construct(FilesystemInterface $fs, $path) method setConfig (line 27) | public function setConfig($name, $value) FILE: app/Services/Deployment/DeployCommanderInterface.php type DeployCommanderInterface (line 5) | interface DeployCommanderInterface method deploy (line 13) | public function deploy($deployment); method rollback (line 21) | public function rollback($deployment); FILE: app/Services/Deployment/DeployerDeploymentFileBuilder.php class DeployerDeploymentFileBuilder (line 9) | class DeployerDeploymentFileBuilder implements DeployerFileBuilderInterface method __construct (line 21) | public function __construct(FilesystemInterface $fs, DeployerFile $dep... method __destruct (line 27) | public function __destruct() method pathInfo (line 37) | public function pathInfo() method put (line 55) | public function put() method getResult (line 84) | public function getResult() method setProject (line 95) | public function setProject(Model $project) method setServerListFile (line 108) | public function setServerListFile(DeployerFile $serverListFile) method setRecipeFile (line 121) | public function setRecipeFile(array $recipeFile) FILE: app/Services/Deployment/DeployerFile.php class DeployerFile (line 5) | class DeployerFile method getBaseName (line 16) | public function getBaseName() method getFullPath (line 26) | public function getFullPath() method setBaseName (line 37) | public function setBaseName($baseName) method setFullPath (line 50) | public function setFullPath($fullPath) FILE: app/Services/Deployment/DeployerFileBuilderInterface.php type DeployerFileBuilderInterface (line 5) | interface DeployerFileBuilderInterface method pathInfo (line 12) | public function pathInfo(); method put (line 19) | public function put(); method getResult (line 26) | public function getResult(); FILE: app/Services/Deployment/DeployerFileDirector.php class DeployerFileDirector (line 5) | class DeployerFileDirector method __construct (line 9) | public function __construct(DeployerFileBuilderInterface $fileBuilder) method construct (line 19) | public function construct() FILE: app/Services/Deployment/DeployerRecipeFileBuilder.php class DeployerRecipeFileBuilder (line 9) | class DeployerRecipeFileBuilder implements DeployerFileBuilderInterface method __construct (line 17) | public function __construct(FilesystemInterface $fs, DeployerFile $dep... method __destruct (line 23) | public function __destruct() method pathInfo (line 33) | public function pathInfo() method put (line 51) | public function put() method getResult (line 66) | public function getResult() method setRecipe (line 77) | public function setRecipe(Model $recipe) FILE: app/Services/Deployment/DeployerServerListFileBuilder.php class DeployerServerListFileBuilder (line 11) | class DeployerServerListFileBuilder implements DeployerFileBuilderInterface method __construct (line 25) | public function __construct(FilesystemInterface $fs, DeployerFile $dep... method __destruct (line 33) | public function __destruct() method pathInfo (line 43) | public function pathInfo() method put (line 61) | public function put() method getResult (line 88) | public function getResult() method setServer (line 99) | public function setServer(Model $server) method setProject (line 112) | public function setProject(Model $project) FILE: app/Services/Deployment/QueueDeployCommander.php class QueueDeployCommander (line 10) | class QueueDeployCommander implements DeployCommanderInterface method __construct (line 14) | public function __construct(Dispatcher $dispatcher) method deploy (line 25) | public function deploy($deployment) method rollback (line 38) | public function rollback($deployment) FILE: app/Services/Deployment/StorageDeployCommander.php class StorageDeployCommander (line 7) | class StorageDeployCommander implements DeployCommanderInterface method deploy (line 15) | public function deploy($deployment) method rollback (line 30) | public function rollback($deployment) FILE: app/Services/Filesystem/FilesystemInterface.php type FilesystemInterface (line 5) | interface FilesystemInterface method put (line 14) | public function put($path, $contents); method get (line 22) | public function get($path); FILE: app/Services/Filesystem/LaravelFilesystem.php class LaravelFilesystem (line 9) | class LaravelFilesystem implements FilesystemInterface method __construct (line 13) | public function __construct(Filesystem $fs) method put (line 25) | public function put($path, $contents) method get (line 36) | public function get($path) method delete (line 47) | public function delete($path) FILE: app/Services/Form/Deployment/DeploymentForm.php class DeploymentForm (line 10) | class DeploymentForm method __construct (line 26) | public function __construct(ValidableInterface $validator, ProjectInte... method save (line 39) | public function save(array $input) method errors (line 73) | public function errors() method valid (line 83) | protected function valid(array $input) FILE: app/Services/Form/Deployment/DeploymentFormLaravelValidator.php class DeploymentFormLaravelValidator (line 7) | class DeploymentFormLaravelValidator extends AbstractLaravelValidator FILE: app/Services/Form/Project/ProjectForm.php class ProjectForm (line 9) | class ProjectForm method __construct (line 22) | public function __construct(ValidableInterface $validator, ProjectInte... method save (line 34) | public function save(array $input) method update (line 70) | public function update(array $input) method errors (line 106) | public function errors() method valid (line 116) | protected function valid(array $input) FILE: app/Services/Form/Project/ProjectFormLaravelValidator.php class ProjectFormLaravelValidator (line 7) | class ProjectFormLaravelValidator extends AbstractLaravelValidator method rules (line 23) | protected function rules() FILE: app/Services/Form/Recipe/RecipeForm.php class RecipeForm (line 8) | class RecipeForm method __construct (line 21) | public function __construct(ValidableInterface $validator, RecipeInter... method save (line 33) | public function save(array $input) method update (line 48) | public function update(array $input) method errors (line 62) | public function errors() method valid (line 72) | protected function valid(array $input) FILE: app/Services/Form/Recipe/RecipeFormLaravelValidator.php class RecipeFormLaravelValidator (line 7) | class RecipeFormLaravelValidator extends AbstractLaravelValidator FILE: app/Services/Form/Server/ServerForm.php class ServerForm (line 8) | class ServerForm method __construct (line 21) | public function __construct(ValidableInterface $validator, ServerInter... method save (line 33) | public function save(array $input) method update (line 48) | public function update(array $input) method errors (line 62) | public function errors() method valid (line 72) | protected function valid(array $input) FILE: app/Services/Form/Server/ServerFormLaravelValidator.php class ServerFormLaravelValidator (line 7) | class ServerFormLaravelValidator extends AbstractLaravelValidator FILE: app/Services/Form/Setting/MailSettingForm.php class MailSettingForm (line 8) | class MailSettingForm method __construct (line 21) | public function __construct(ValidableInterface $validator, SettingInte... method update (line 33) | public function update(array $input) method errors (line 71) | public function errors() method valid (line 81) | protected function valid(array $input) FILE: app/Services/Form/Setting/MailSettingFormLaravelValidator.php class MailSettingFormLaravelValidator (line 7) | class MailSettingFormLaravelValidator extends AbstractLaravelValidator FILE: app/Services/Form/User/UserForm.php class UserForm (line 10) | class UserForm method __construct (line 23) | public function __construct(ValidableInterface $validator, UserInterfa... method save (line 35) | public function save(array $input) method update (line 64) | public function update(array $input) method updatePassword (line 83) | public function updatePassword(array $input) method updateRole (line 100) | public function updateRole(array $input) method regenerateApiToken (line 123) | public function regenerateApiToken(array $input) method errors (line 137) | public function errors() method valid (line 147) | protected function valid(array $input) FILE: app/Services/Form/User/UserFormLaravelValidator.php class UserFormLaravelValidator (line 7) | class UserFormLaravelValidator extends AbstractLaravelValidator method rules (line 15) | protected function rules() FILE: app/Services/Notification/MailNotifier.php class MailNotifier (line 7) | class MailNotifier implements NotifierInterface method to (line 29) | public function to($to) method from (line 42) | public function from($from) method notify (line 56) | public function notify($subject, $message) FILE: app/Services/Notification/NotifierInterface.php type NotifierInterface (line 5) | interface NotifierInterface method to (line 12) | public function to($to); method from (line 20) | public function from($from); method notify (line 29) | public function notify($subject, $message); FILE: app/Services/Validation/AbstractLaravelValidator.php class AbstractLaravelValidator (line 7) | abstract class AbstractLaravelValidator implements ValidableInterface method __construct (line 23) | public function __construct(Factory $validator) method with (line 34) | public function with(array $data) method passes (line 46) | public function passes() method errors (line 66) | public function errors() method rules (line 76) | protected function rules() FILE: app/Services/Validation/ValidableInterface.php type ValidableInterface (line 5) | interface ValidableInterface method with (line 13) | public function with(array $input); method passes (line 20) | public function passes(); method errors (line 27) | public function errors(); FILE: app/Specifications/DeploymentSpecification.php class DeploymentSpecification (line 7) | class DeploymentSpecification method satisfyingElementsFrom (line 15) | public function satisfyingElementsFrom(Model $project) FILE: app/Specifications/OldDeploymentSpecification.php class OldDeploymentSpecification (line 8) | class OldDeploymentSpecification extends DeploymentSpecification method __construct (line 12) | public function __construct(DateTime $currentDate) method satisfyingElementsFrom (line 23) | public function satisfyingElementsFrom(Model $project) FILE: app/Traits/RestExceptionHandlerTrait.php type RestExceptionHandlerTrait (line 9) | trait RestExceptionHandlerTrait method getJsonResponseForException (line 18) | protected function getJsonResponseForException(Request $request, Excep... method badRequest (line 42) | protected function badRequest($message = 'Bad request', $statusCode = ... method unauthorized (line 54) | protected function unauthorized($message = 'Unauthorized', $statusCode... method notFound (line 66) | protected function notFound($message = 'Not found', $statusCode = 404) method internalError (line 78) | protected function internalError($message = 'Internal error', $statusC... method jsonResponse (line 90) | protected function jsonResponse(array $payload = null, $statusCode = 404) FILE: database/migrations/2014_10_12_000000_create_users_table.php class CreateUsersTable (line 6) | class CreateUsersTable extends Migration method up (line 13) | public function up() method down (line 31) | public function down() FILE: database/migrations/2014_10_12_100000_create_password_resets_table.php class CreatePasswordResetsTable (line 6) | class CreatePasswordResetsTable extends Migration method up (line 13) | public function up() method down (line 27) | public function down() FILE: database/migrations/2015_02_07_172606_create_roles_table.php class CreateRolesTable (line 6) | class CreateRolesTable extends Migration method up (line 13) | public function up() method down (line 29) | public function down() FILE: database/migrations/2015_02_07_172633_create_role_user_table.php class CreateRoleUserTable (line 6) | class CreateRoleUserTable extends Migration method up (line 13) | public function up() method down (line 30) | public function down() FILE: database/migrations/2015_02_07_172649_create_permissions_table.php class CreatePermissionsTable (line 6) | class CreatePermissionsTable extends Migration method up (line 13) | public function up() method down (line 31) | public function down() FILE: database/migrations/2015_02_07_172657_create_permission_role_table.php class CreatePermissionRoleTable (line 6) | class CreatePermissionRoleTable extends Migration method up (line 13) | public function up() method down (line 30) | public function down() FILE: database/migrations/2015_02_17_152439_create_permission_user_table.php class CreatePermissionUserTable (line 6) | class CreatePermissionUserTable extends Migration method up (line 13) | public function up() method down (line 30) | public function down() FILE: database/migrations/2015_02_22_123238_create_recipes_table.php class CreateRecipesTable (line 6) | class CreateRecipesTable extends Migration method up (line 13) | public function up() method down (line 29) | public function down() FILE: database/migrations/2015_02_23_123238_create_servers_table.php class CreateServersTable (line 6) | class CreateServersTable extends Migration method up (line 13) | public function up() method down (line 29) | public function down() FILE: database/migrations/2015_02_28_164641_create_projects_table.php class CreateProjectsTable (line 6) | class CreateProjectsTable extends Migration method up (line 13) | public function up() method down (line 45) | public function down() FILE: database/migrations/2015_03_01_084552_create_deployments_table.php class CreateDeploymentsTable (line 6) | class CreateDeploymentsTable extends Migration method up (line 13) | public function up() method down (line 39) | public function down() FILE: database/migrations/2015_05_28_132914_create_max_deployments_table.php class CreateMaxDeploymentsTable (line 6) | class CreateMaxDeploymentsTable extends Migration method up (line 13) | public function up() method down (line 35) | public function down() FILE: database/migrations/2015_06_16_143119_create_jobs_table.php class CreateJobsTable (line 6) | class CreateJobsTable extends Migration method up (line 13) | public function up() method down (line 32) | public function down() FILE: database/migrations/2015_08_10_143119_create_project_recipe_table.php class CreateProjectRecipeTable (line 6) | class CreateProjectRecipeTable extends Migration method up (line 13) | public function up() method down (line 39) | public function down() FILE: database/migrations/2016_08_24_041250_create_settings_table.php class CreateSettingsTable (line 6) | class CreateSettingsTable extends Migration method up (line 13) | public function up() method down (line 28) | public function down() FILE: database/seeds/DatabaseSeeder.php class DatabaseSeeder (line 6) | class DatabaseSeeder extends Seeder method run (line 13) | public function run() FILE: database/seeds/PermissionRoleTableSeeder.php class PermissionRoleTableSeeder (line 6) | class PermissionRoleTableSeeder extends Seeder method run (line 8) | public function run() FILE: database/seeds/PermissionTableSeeder.php class PermissionTableSeeder (line 6) | class PermissionTableSeeder extends Seeder method run (line 8) | public function run() FILE: database/seeds/RecipeTableSeeder.php class RecipeTableSeeder (line 6) | class RecipeTableSeeder extends Seeder method run (line 8) | public function run() FILE: database/seeds/RoleTableSeeder.php class RoleTableSeeder (line 6) | class RoleTableSeeder extends Seeder method run (line 8) | public function run() FILE: database/seeds/RoleUserTableSeeder.php class RoleUserTableSeeder (line 7) | class RoleUserTableSeeder extends Seeder method run (line 9) | public function run() FILE: database/seeds/UserTableSeeder.php class UserTableSeeder (line 6) | class UserTableSeeder extends Seeder method run (line 8) | public function run() FILE: tests/Entities/Setting/AppSettingEntityTest.php class AppSettingEntityTest (line 5) | class AppSettingEntityTest extends TestCase method test_Should_SetAndGetUrl (line 7) | public function test_Should_SetAndGetUrl() FILE: tests/Entities/Setting/DbSettingEntityTest.php class DbSettingEntityTest (line 5) | class DbSettingEntityTest extends TestCase method test_Should_SetAndGetDriver (line 7) | public function test_Should_SetAndGetDriver() method test_Should_SetAndGetHost (line 18) | public function test_Should_SetAndGetHost() method test_Should_SetAndGetDatabase (line 29) | public function test_Should_SetAndGetDatabase() method test_Should_SetAndGetUsername (line 40) | public function test_Should_SetAndGetUsername() method test_Should_SetAndGetPassword (line 51) | public function test_Should_SetAndGetPassword() FILE: tests/Entities/Setting/MailSettingEntityTest.php class MailSettingEntityTest (line 5) | class MailSettingEntityTest extends TestCase method test_Should_SetAndGetDriver (line 7) | public function test_Should_SetAndGetDriver() method test_Should_SetAndGetFrom (line 18) | public function test_Should_SetAndGetFrom() method test_Should_SetAndGetSmtpHost (line 32) | public function test_Should_SetAndGetSmtpHost() method test_Should_SetAndGetSmtpPort (line 43) | public function test_Should_SetAndGetSmtpPort() method test_Should_SetAndGetSmtpEncryption (line 54) | public function test_Should_SetAndGetSmtpEncryption() method test_Should_SetAndGetSmtpUsername (line 65) | public function test_Should_SetAndGetSmtpUsername() method test_Should_SetAndGetSmtpPassword (line 76) | public function test_Should_SetAndGetSmtpPassword() method test_Should_SetAndGetSendmailPath (line 87) | public function test_Should_SetAndGetSendmailPath() FILE: tests/Http/Controllers/DeploymentsControllerTest.php class DeploymentsControllerTest (line 6) | class DeploymentsControllerTest extends TestCase method setUp (line 20) | public function setUp() method test_Should_DisplayIndexPage_When_IndexPageIsRequested (line 39) | public function test_Should_DisplayIndexPage_When_IndexPageIsRequested() method test_Should_RedirectToIndexPage_When_StoreProcessSucceeds (line 67) | public function test_Should_RedirectToIndexPage_When_StoreProcessSucce... method test_Should_RedirectToIndexPage_When_StoreProcessFails (line 95) | public function test_Should_RedirectToIndexPage_When_StoreProcessFails() method test_Should_DisplayShowPage_When_ShowPageIsRequestedAndResourceIsFound (line 130) | public function test_Should_DisplayShowPage_When_ShowPageIsRequestedAn... method test_Should_DisplayNotFoundPage_When_ShowPageIsRequestedAndResourceIsNotFound (line 160) | public function test_Should_DisplayNotFoundPage_When_ShowPageIsRequest... FILE: tests/Http/Controllers/ProjectsControllerTest.php class ProjectsControllerTest (line 6) | class ProjectsControllerTest extends TestCase method setUp (line 26) | public function setUp() method test_Should_DisplayIndexPage_When_IndexPageIsRequested (line 48) | public function test_Should_DisplayIndexPage_When_IndexPageIsRequested() method test_Should_DisplayCreatePage_When_CreatePageIsRequested (line 73) | public function test_Should_DisplayCreatePage_When_CreatePageIsRequest... method test_Should_RedirectToIndexPage_When_StoreProcessSucceeds (line 95) | public function test_Should_RedirectToIndexPage_When_StoreProcessSucce... method test_Should_RedirectToCreatePage_When_StoreProcessFails (line 107) | public function test_Should_RedirectToCreatePage_When_StoreProcessFails() method test_Should_DisplayShowPage_When_ShowPageIsRequestedAndResourceIsFound (line 125) | public function test_Should_DisplayShowPage_When_ShowPageIsRequestedAn... method test_Should_DisplayNotFoundPage_When_ShowPageIsRequestedAndResourceIsNotFound (line 167) | public function test_Should_DisplayNotFoundPage_When_ShowPageIsRequest... method test_Should_DisplayEditPage_When_EditPageIsRequestedAndResourceIsFound (line 179) | public function test_Should_DisplayEditPage_When_EditPageIsRequestedAn... method test_Should_DisplayNotFoundPage_When_EditPageIsRequestedAndResourceIsNotFound (line 220) | public function test_Should_DisplayNotFoundPage_When_EditPageIsRequest... method test_Should_RedirectToIndexPage_When_UpdateProcessSucceeds (line 232) | public function test_Should_RedirectToIndexPage_When_UpdateProcessSucc... method test_Should_RedirectToEditPage_When_UpdateProcessFails (line 256) | public function test_Should_RedirectToEditPage_When_UpdateProcessFails() method test_Should_DisplayNotFoundPage_When_UpdateProcessIsRequestedAndResourceIsNotFound (line 286) | public function test_Should_DisplayNotFoundPage_When_UpdateProcessIsRe... method test_Should_RedirectToIndexPage_When_DestroyProcessIsRequestedAndDestroyProcessSucceeds (line 298) | public function test_Should_RedirectToIndexPage_When_DestroyProcessIsR... method test_Should_DisplayNotFoundPage_When_DestroyProcessIsRequestedAndResourceIsNotFound (line 321) | public function test_Should_DisplayNotFoundPage_When_DestroyProcessIsR... FILE: tests/Http/Controllers/RecipesControllerTest.php class RecipesControllerTest (line 6) | class RecipesControllerTest extends TestCase method setUp (line 16) | public function setUp() method test_Should_DisplayIndexPage_When_IndexPageIsRequested (line 34) | public function test_Should_DisplayIndexPage_When_IndexPageIsRequested() method test_Should_DisplayCreatePage_When_CreatePageIsRequested (line 60) | public function test_Should_DisplayCreatePage_When_CreatePageIsRequest... method test_Should_RedirectToIndexPage_When_StoreProcessSucceeds (line 67) | public function test_Should_RedirectToIndexPage_When_StoreProcessSucce... method test_Should_RedirectToCreatePage_When_StoreProcessFails (line 79) | public function test_Should_RedirectToCreatePage_When_StoreProcessFails() method test_Should_DisplayShowPage_When_ShowPageIsRequestedAndResourceIsFound (line 97) | public function test_Should_DisplayShowPage_When_ShowPageIsRequestedAn... method test_Should_DisplayNotFoundPage_When_ShowPageIsRequestedAndResourceIsNotFound (line 116) | public function test_Should_DisplayNotFoundPage_When_ShowPageIsRequest... method test_Should_DisplayEditPage_When_EditPageIsRequestedAndResourceIsFound (line 128) | public function test_Should_DisplayEditPage_When_EditPageIsRequestedAn... method test_Should_DisplayNotFoundPage_When_EditPageIsRequestedAndResourceIsNotFound (line 150) | public function test_Should_DisplayNotFoundPage_When_EditPageIsRequest... method test_Should_RedirectToIndexPage_When_UpdateProcessSucceeds (line 162) | public function test_Should_RedirectToIndexPage_When_UpdateProcessSucc... method test_Should_RedirectToEditPage_When_UpdateProcessFails (line 188) | public function test_Should_RedirectToEditPage_When_UpdateProcessFails() method test_Should_DisplayNotFoundPage_When_UpdateProcessIsRequestedAndResourceIsNotFound (line 220) | public function test_Should_DisplayNotFoundPage_When_UpdateProcessIsRe... method test_Should_RedirectToIndexPage_When_DestroyProcessIsRequestedAndDestroyProcessSucceeds (line 232) | public function test_Should_RedirectToIndexPage_When_DestroyProcessIsR... method test_Should_DisplayNotFoundPage_When_DestroyProcessIsRequestedAndResourceIsNotFound (line 257) | public function test_Should_DisplayNotFoundPage_When_DestroyProcessIsR... FILE: tests/Http/Controllers/ServersControllerTest.php class ServersControllerTest (line 6) | class ServersControllerTest extends TestCase method setUp (line 16) | public function setUp() method test_Should_DisplayIndexPage_When_IndexPageIsRequested (line 33) | public function test_Should_DisplayIndexPage_When_IndexPageIsRequested() method test_Should_DisplayCreatePage_When_CreatePageIsRequested (line 54) | public function test_Should_DisplayCreatePage_When_CreatePageIsRequest... method test_Should_RedirectToIndexPage_When_StoreProcessSucceeds (line 61) | public function test_Should_RedirectToIndexPage_When_StoreProcessSucce... method test_Should_RedirectToCreatePage_When_StoreProcessFails (line 73) | public function test_Should_RedirectToCreatePage_When_StoreProcessFails() method test_Should_DisplayShowPage_When_ShowPageIsRequestedAndResourceIsFound (line 91) | public function test_Should_DisplayShowPage_When_ShowPageIsRequestedAn... method test_Should_DisplayNotFoundPage_When_ShowPageIsRequestedAndResourceIsNotFound (line 113) | public function test_Should_DisplayNotFoundPage_When_ShowPageIsRequest... method test_Should_DisplayEditPage_When_EditPageIsRequestedAndResourceIsFound (line 125) | public function test_Should_DisplayEditPage_When_EditPageIsRequestedAn... method test_Should_DisplayNotFoundPage_When_EditPageIsRequestedAndResourceIsNotFound (line 147) | public function test_Should_DisplayNotFoundPage_When_EditPageIsRequest... method test_Should_RedirectToIndexPage_When_UpdateProcessSucceeds (line 159) | public function test_Should_RedirectToIndexPage_When_UpdateProcessSucc... method test_Should_RedirectToEditPage_When_UpdateProcessFails (line 185) | public function test_Should_RedirectToEditPage_When_UpdateProcessFails() method test_Should_DisplayNotFoundPage_When_UpdateProcessIsRequestedAndResourceIsNotFound (line 217) | public function test_Should_DisplayNotFoundPage_When_UpdateProcessIsRe... method test_Should_RedirectToIndexPage_When_DestroyProcessIsRequestedAndDestroyProcessSucceeds (line 229) | public function test_Should_RedirectToIndexPage_When_DestroyProcessIsR... method test_Should_DisplayNotFoundPage_When_DestroyProcessIsRequestedAndResourceIsNotFound (line 254) | public function test_Should_DisplayNotFoundPage_When_DestroyProcessIsR... FILE: tests/Http/Controllers/SettingsControllerTest.php class SettingsControllerTest (line 5) | class SettingsControllerTest extends TestCase method setUp (line 17) | public function setUp() method test_Should_DisplayEmailSettingPage (line 36) | public function test_Should_DisplayEmailSettingPage() method test_Should_RedirectToEmailSettingPage_When_EmailSettingProcessIsRequestedAndEmailSettingProcessSucceeds (line 70) | public function test_Should_RedirectToEmailSettingPage_When_EmailSetti... method test_Should_RedirectToEmailSettingPage_When_EmailSettingProcessIsRequestedAndEmailSettingProcessFails (line 82) | public function test_Should_RedirectToEmailSettingPage_When_EmailSetti... FILE: tests/Http/Controllers/UsersControllerTest.php class UsersControllerTest (line 6) | class UsersControllerTest extends TestCase method setUp (line 18) | public function setUp() method test_Should_DisplayIndexPage_When_IndexPageIsRequested (line 36) | public function test_Should_DisplayIndexPage_When_IndexPageIsRequested() method test_Should_DisplayCreatePage_When_CreatePageIsRequested (line 57) | public function test_Should_DisplayCreatePage_When_CreatePageIsRequest... method test_Should_RedirectToIndexPage_When_StoreProcessSucceeds (line 69) | public function test_Should_RedirectToIndexPage_When_StoreProcessSucce... method test_Should_RedirectToCreatePage_When_StoreProcessFails (line 81) | public function test_Should_RedirectToCreatePage_When_StoreProcessFails() method test_Should_RedirectToEditPage_When_ShowPageIsRequestedAndResourceIsFound (line 99) | public function test_Should_RedirectToEditPage_When_ShowPageIsRequeste... method test_Should_DisplayNotFoundPage_When_ShowPageIsRequestedAndResourceIsNotFound (line 120) | public function test_Should_DisplayNotFoundPage_When_ShowPageIsRequest... method test_Should_DisplayEditPage_When_EditPageIsRequestedAndResourceIsFound (line 132) | public function test_Should_DisplayEditPage_When_EditPageIsRequestedAn... method test_Should_DisplayNotFoundPage_When_EditPageIsRequestedAndResourceIsNotFound (line 154) | public function test_Should_DisplayNotFoundPage_When_EditPageIsRequest... method test_Should_RedirectToIndexPage_When_UpdateProcessSucceeds (line 166) | public function test_Should_RedirectToIndexPage_When_UpdateProcessSucc... method test_Should_RedirectToEditPage_When_UpdateProcessFails (line 192) | public function test_Should_RedirectToEditPage_When_UpdateProcessFails() method test_Should_DisplayNotFoundPage_When_UpdateProcessIsRequestedAndResourceIsNotFound (line 224) | public function test_Should_DisplayNotFoundPage_When_UpdateProcessIsRe... method test_Should_DisplayPasswordChangePage_When_PasswordChangePageIsRequestedAndResourceIsFound (line 236) | public function test_Should_DisplayPasswordChangePage_When_PasswordCha... method test_Should_DisplayNotFoundPage_When_PasswordChangePageIsRequestedAndResourceIsNotFound (line 258) | public function test_Should_DisplayNotFoundPage_When_PasswordChangePag... method test_Should_RedirectToIndexPage_When_PasswordUpdateProcessSucceeds (line 270) | public function test_Should_RedirectToIndexPage_When_PasswordUpdatePro... method test_Should_RedirectToPasswordChangePage_When_PasswordUpdateProcessFails (line 296) | public function test_Should_RedirectToPasswordChangePage_When_Password... method test_Should_DisplayNotFoundPage_When_PasswordUpdateProcessIsRequestedAndResourceIsNotFound (line 328) | public function test_Should_DisplayNotFoundPage_When_PasswordUpdatePro... method test_Should_DisplayEditRolePage_When_EditRolePageIsRequestedAndResourceIsFound (line 340) | public function test_Should_DisplayEditRolePage_When_EditRolePageIsReq... method test_Should_DisplayNotFoundPage_When_EditRolePageIsRequestedAndResourceIsNotFound (line 367) | public function test_Should_DisplayNotFoundPage_When_EditRolePageIsReq... method test_Should_RedirectToIndexPage_When_RoleUpdateProcessSucceeds (line 379) | public function test_Should_RedirectToIndexPage_When_RoleUpdateProcess... method test_Should_RedirectToEditRolePage_When_EditUpdateProcessFails (line 405) | public function test_Should_RedirectToEditRolePage_When_EditUpdateProc... method test_Should_DisplayNotFoundPage_When_RoleUpdateProcessIsRequestedAndResourceIsNotFound (line 437) | public function test_Should_DisplayNotFoundPage_When_RoleUpdateProcess... method test_Should_RedirectToIndexPage_When_DestroyProcessIsRequestedAndDestroyProcessSucceeds (line 449) | public function test_Should_RedirectToIndexPage_When_DestroyProcessIsR... method test_Should_DisplayNotFoundPage_When_DestroyProcessIsRequestedAndResourceIsNotFound (line 474) | public function test_Should_DisplayNotFoundPage_When_DestroyProcessIsR... FILE: tests/Http/Controllers/Webhook/Github/V1/DeploymentsControllerTest.php class DeploymentsControllerTest (line 8) | class DeploymentsControllerTest extends \TestCase method setUp (line 22) | public function setUp() method test_Should_ReturnStatusCode200_When_StoreProcessSucceeds (line 41) | public function test_Should_ReturnStatusCode200_When_StoreProcessSucce... method test_Should_ReturnStatusCode400_When_StoreProcessFails (line 64) | public function test_Should_ReturnStatusCode400_When_StoreProcessFails() FILE: tests/Jobs/DeployTest.php class DeployTest (line 9) | class DeployTest extends \TestCase method setUp (line 41) | public function setUp() method test_Should_Work_When_DeployerIsNormalEnd (line 61) | public function test_Should_Work_When_DeployerIsNormalEnd() method test_Should_Work_When_DeployerIsAbnormalEnd (line 175) | public function test_Should_Work_When_DeployerIsAbnormalEnd() method test_Should_WorkAndSendNotification_When_DeployerIsNormalEndAndEmailNotificationRecipientIsSet (line 289) | public function test_Should_WorkAndSendNotification_When_DeployerIsNor... method test_Should_WorkAndSendNotification_When_DeployerIsAbnormalEndAndEmailNotificationRecipientIsSet (line 454) | public function test_Should_WorkAndSendNotification_When_DeployerIsAbn... FILE: tests/Jobs/RollbackTest.php class RollbackTest (line 9) | class RollbackTest extends \TestCase method setUp (line 41) | public function setUp() method test_Should_Work_When_DeployerIsNormalEnd (line 61) | public function test_Should_Work_When_DeployerIsNormalEnd() method test_Should_Work_When_DeployerIsAbnormalEnd (line 175) | public function test_Should_Work_When_DeployerIsAbnormalEnd() method test_Should_WorkAndSendNotification_When_DeployerIsNormalEndAndEmailNotificationRecipientIsSet (line 289) | public function test_Should_WorkAndSendNotification_When_DeployerIsNor... method test_Should_WorkAndSendNotification_When_DeployerIsAbnormalEndAndEmailNotificationRecipientIsSet (line 454) | public function test_Should_WorkAndSendNotification_When_DeployerIsAbn... FILE: tests/Models/DeploymentPresenterTest.php class DeploymentPresenterTest (line 8) | class DeploymentPresenterTest extends TestCase method test_Should_ConvertStatusToHtmlSnippet_When_StatusIsOK (line 10) | public function test_Should_ConvertStatusToHtmlSnippet_When_StatusIsOK() method test_Should_ConvertStatusToHtmlSnippet_When_StatusIsNg (line 32) | public function test_Should_ConvertStatusToHtmlSnippet_When_StatusIsNg() method test_Should_ConvertStatusToHtmlSnippet_When_StatusIsUnknown (line 54) | public function test_Should_ConvertStatusToHtmlSnippet_When_StatusIsUn... method test_Should_ConvertStatusToText_When_StatusIsOK (line 76) | public function test_Should_ConvertStatusToText_When_StatusIsOK() method test_Should_ConvertStatusToText_When_StatusIsNg (line 98) | public function test_Should_ConvertStatusToText_When_StatusIsNg() method test_Should_ConvertStatusToText_When_StatusIsNotDetermined (line 120) | public function test_Should_ConvertStatusToText_When_StatusIsNotDeterm... method test_Should_ConvertMessageToHtmlSnippet (line 142) | public function test_Should_ConvertMessageToHtmlSnippet() method test_Should_ConvertMessageToText (line 165) | public function test_Should_ConvertMessageToText() FILE: tests/Models/ProjectTest.php class ProjectTest (line 8) | class ProjectTest extends TestCase method test_Should_GetDeploymentsWhereCreatedAtBefore (line 12) | public function test_Should_GetDeploymentsWhereCreatedAtBefore() method test_Should_GetDeploymentsWhereNumberBefore (line 47) | public function test_Should_GetDeploymentsWhereNumberBefore() FILE: tests/Repositories/Project/EloquentProjectTest.php class EloquentProjectTest (line 7) | class EloquentProjectTest extends TestCase method test_Should_GetProjectById (line 11) | public function test_Should_GetProjectById() method test_Should_GetProjectsByPage (line 36) | public function test_Should_GetProjectsByPage() method test_Should_CreateNewProject (line 61) | public function test_Should_CreateNewProject() method test_Should_UpdateExistingProject (line 87) | public function test_Should_UpdateExistingProject() method test_Should_DeleteExistingProject (line 135) | public function test_Should_DeleteExistingProject() FILE: tests/Repositories/Recipe/EloquentRecipeTest.php class EloquentRecipeTest (line 7) | class EloquentRecipeTest extends TestCase method test_Should_GetRecipeById (line 11) | public function test_Should_GetRecipeById() method test_Should_GetRecipesByPage (line 28) | public function test_Should_GetRecipesByPage() method test_Should_CreateNewRecipe (line 45) | public function test_Should_CreateNewRecipe() method test_Should_UpdateExistingRecipe (line 63) | public function test_Should_UpdateExistingRecipe() method test_Should_DeleteExistingRecipe (line 88) | public function test_Should_DeleteExistingRecipe() FILE: tests/Repositories/Role/EloquentRoleTest.php class EloquentRoleTest (line 7) | class EloquentRoleTest extends TestCase method test_Should_GetRoleById (line 11) | public function test_Should_GetRoleById() method test_Should_GetRolesByPage (line 28) | public function test_Should_GetRolesByPage() method test_Should_CreateNewRole (line 45) | public function test_Should_CreateNewRole() method test_Should_UpdateExistingRole (line 63) | public function test_Should_UpdateExistingRole() method test_Should_DeleteExistingRole (line 88) | public function test_Should_DeleteExistingRole() FILE: tests/Repositories/Server/EloquentServerTest.php class EloquentServerTest (line 7) | class EloquentServerTest extends TestCase method test_Should_GetServerById (line 11) | public function test_Should_GetServerById() method test_Should_GetServersByPage (line 28) | public function test_Should_GetServersByPage() method test_Should_CreateNewServer (line 45) | public function test_Should_CreateNewServer() method test_Should_UpdateExistingServer (line 63) | public function test_Should_UpdateExistingServer() method test_Should_DeleteExistingServer (line 88) | public function test_Should_DeleteExistingServer() FILE: tests/Repositories/Setting/ConfigAppSettingTest.php class ConfigAppSettingTest (line 10) | class ConfigAppSettingTest extends TestCase method setUp (line 14) | public function setUp() method test_Should_GetAllAppSettings (line 21) | public function test_Should_GetAllAppSettings() method test_Should_UpdateExistingAppSettings (line 49) | public function test_Should_UpdateExistingAppSettings() FILE: tests/Repositories/Setting/ConfigDbSettingTest.php class ConfigDbSettingTest (line 10) | class ConfigDbSettingTest extends TestCase method setUp (line 14) | public function setUp() method test_Should_GetAllDbSettings (line 21) | public function test_Should_GetAllDbSettings() method test_Should_UpdateExistingDbSettings (line 57) | public function test_Should_UpdateExistingDbSettings() FILE: tests/Repositories/Setting/ConfigMailSettingTest.php class ConfigMailSettingTest (line 10) | class ConfigMailSettingTest extends TestCase method setUp (line 14) | public function setUp() method test_Should_GetAllMailSettings (line 21) | public function test_Should_GetAllMailSettings() method test_Should_UpdateExistingMailSettings (line 65) | public function test_Should_UpdateExistingMailSettings() FILE: tests/Repositories/User/EloquentUserTest.php class EloquentUserTest (line 8) | class EloquentUserTest extends TestCase method setUp (line 14) | public function setUp() method test_Should_GetUserById (line 21) | public function test_Should_GetUserById() method test_Should_GetUsersByPage (line 40) | public function test_Should_GetUsersByPage() method test_Should_CreateNewUser (line 57) | public function test_Should_CreateNewUser() method test_Should_UpdateExistingUser (line 77) | public function test_Should_UpdateExistingUser() method test_Should_UpdateExistingUser_When_RoleIsSpecified (line 105) | public function test_Should_UpdateExistingUser_When_RoleIsSpecified() method test_Should_UpdateExistingUser_When_RoleIsEmpty (line 141) | public function test_Should_UpdateExistingUser_When_RoleIsEmpty() method test_Should_DeleteExistingUser (line 177) | public function test_Should_DeleteExistingUser() FILE: tests/Services/Api/JsonRpcTest.php class JsonRpcTest (line 5) | class JsonRpcTest extends TestCase method setUp (line 19) | public function setUp() method test_Should_NotThrowWException_When_DeployProcedureSucceeds (line 29) | public function test_Should_NotThrowWException_When_DeployProcedureSuc... method test_Should_ThrowWException_When_DeployProcedureFails (line 66) | public function test_Should_ThrowWException_When_DeployProcedureFails() method test_Should_NotThrowWException_When_RollbackProcedureSucceeds (line 93) | public function test_Should_NotThrowWException_When_RollbackProcedureS... method test_Should_ThrowWException_When_RollbackProcedureFails (line 130) | public function test_Should_ThrowWException_When_RollbackProcedureFails() FILE: tests/Services/Config/DotenvReaderTest.php class DotenvReaderTest (line 8) | class DotenvReaderTest extends TestCase method setUp (line 12) | public function setUp() method test_Should_GetConfigValue_When_ConfigExistsAndValueIsNotEmpty (line 19) | public function test_Should_GetConfigValue_When_ConfigExistsAndValueIs... method test_Should_GetConfigValue_When_ConfigExistsAndValueIsSingleQuoted (line 40) | public function test_Should_GetConfigValue_When_ConfigExistsAndValueIs... method test_Should_GetConfigValue_When_ConfigExistsAndValueHasWhitespaces (line 61) | public function test_Should_GetConfigValue_When_ConfigExistsAndValueHa... method test_Should_GetNull_When_ConfigExistsAndValueIsEmpty (line 82) | public function test_Should_GetNull_When_ConfigExistsAndValueIsEmpty() method test_Should_GetNull_When_ConfigDoesNotExist (line 103) | public function test_Should_GetNull_When_ConfigDoesNotExist() FILE: tests/Services/Config/DotenvWriterTest.php class DotenvWriterTest (line 8) | class DotenvWriterTest extends TestCase method setUp (line 12) | public function setUp() method test_Should_UpdateExistingConfig_When_ConfigExists (line 19) | public function test_Should_UpdateExistingConfig_When_ConfigExists() method test_Should_AddNewConfig_When_ConfigDoesNotExist (line 44) | public function test_Should_AddNewConfig_When_ConfigDoesNotExist() FILE: tests/Services/Deployment/DeployerDeploymentFileBuilderTest.php class DeployerDeploymentFileBuilderTest (line 7) | class DeployerDeploymentFileBuilderTest extends TestCase method setUp (line 19) | public function setUp() method test_Should_BuildDeployerDeploymentFile (line 29) | public function test_Should_BuildDeployerDeploymentFile() FILE: tests/Services/Deployment/DeployerRecipeFileBuilderTest.php class DeployerRecipeFileBuilderTest (line 7) | class DeployerRecipeFileBuilderTest extends TestCase method setUp (line 15) | public function setUp() method test_Should_BuildDeployerRecipeFile (line 23) | public function test_Should_BuildDeployerRecipeFile() FILE: tests/Services/Deployment/DeployerServerListFileBuilderTest.php class DeployerServerListFileBuilderTest (line 11) | class DeployerServerListFileBuilderTest extends TestCase method setUp (line 31) | public function setUp() method test_Should_BuildDeployerServerListFile (line 46) | public function test_Should_BuildDeployerServerListFile() method test_Should_OverrideAttributeInDeployerServerListFile_When_ProjectAttributeIsSpecified (line 87) | public function test_Should_OverrideAttributeInDeployerServerListFile_... method test_Should_OverrideAttributeInDeployerServerListFile_When_ProjectAttributeIsNotSpecified (line 141) | public function test_Should_OverrideAttributeInDeployerServerListFile_... FILE: tests/Services/Deployment/StorageDeployCommanderTest.php class StorageDeployCommanderTest (line 5) | class StorageDeployCommanderTest extends TestCase method test_Should_ReturnTrue_When_DeployCommandSucceeds (line 7) | public function test_Should_ReturnTrue_When_DeployCommandSucceeds() method test_Should_ReturnFalse_When_DeployCommandFails (line 19) | public function test_Should_ReturnFalse_When_DeployCommandFails() method test_Should_ReturnTrue_When_RollbackCommandSucceeds (line 31) | public function test_Should_ReturnTrue_When_RollbackCommandSucceeds() method test_Should_ReturnFalse_When_RollbackCommandFails (line 43) | public function test_Should_ReturnFalse_When_RollbackCommandFails() FILE: tests/Services/Filesystem/LaravelFilesystemTest.php class LaravelFilesystemTest (line 7) | class LaravelFilesystemTest extends TestCase method setUp (line 11) | public function setUp() method test_Should_WriteFile (line 18) | public function test_Should_WriteFile() method test_Should_ReadFile (line 28) | public function test_Should_ReadFile() method test_Should_DeleteFile (line 38) | public function test_Should_DeleteFile() FILE: tests/Services/Form/Deployment/DeploymentFormLaravelValidatorTest.php class DeploymentFormLaravelValidatorTest (line 7) | class DeploymentFormLaravelValidatorTest extends TestCase method test_Should_FailToValidate_When_ProjectIdFieldIsMissing (line 11) | public function test_Should_FailToValidate_When_ProjectIdFieldIsMissing() method test_Should_FailToValidate_When_ProjectIdFieldIsInvalid (line 32) | public function test_Should_FailToValidate_When_ProjectIdFieldIsInvalid() method test_Should_FailToValidate_When_TaskFieldIsMissing (line 55) | public function test_Should_FailToValidate_When_TaskFieldIsMissing() method test_Should_FailToValidate_When_TaskFieldIsInvalid (line 89) | public function test_Should_FailToValidate_When_TaskFieldIsInvalid() method test_Should_FailToValidate_When_UserIdFieldIsMissing (line 124) | public function test_Should_FailToValidate_When_UserIdFieldIsMissing() method test_Should_FailToValidate_When_UserIdFieldIsInvalid (line 151) | public function test_Should_FailToValidate_When_UserIdFieldIsInvalid() method test_Should_PassToValidate_When_ProjectIdFieldAndTaskFieldAndUserIdFieldAreValid (line 180) | public function test_Should_PassToValidate_When_ProjectIdFieldAndTaskF... FILE: tests/Services/Form/Deployment/DeploymentFormTest.php class DeploymentFormTest (line 6) | class DeploymentFormTest extends TestCase method setUp (line 18) | public function setUp() method test_Should_SucceedToSave_When_ValidationPasses (line 28) | public function test_Should_SucceedToSave_When_ValidationPasses() method test_Should_SucceedToSave_When_ValidationPassesAndSaveToDatabaseSucceeds (line 81) | public function test_Should_SucceedToSave_When_ValidationPassesAndSave... method test_Should_FailToSave_When_ValidationPassesAndSaveToDatabaseFails (line 134) | public function test_Should_FailToSave_When_ValidationPassesAndSaveToD... method test_Should_FailToSave_When_ValidationFails (line 182) | public function test_Should_FailToSave_When_ValidationFails() method test_Should_GetValidationErrors (line 203) | public function test_Should_GetValidationErrors() FILE: tests/Services/Form/Project/ProjectFormLaravelValidatorTest.php class ProjectFormLaravelValidatorTest (line 7) | class ProjectFormLaravelValidatorTest extends TestCase method test_Should_FailToValidate_When_RecipeIdFieldIsMissing (line 11) | public function test_Should_FailToValidate_When_RecipeIdFieldIsMissing() method test_Should_FailToValidate_When_NameFieldIsMissing (line 34) | public function test_Should_FailToValidate_When_NameFieldIsMissing() method test_Should_FailToValidate_When_ServerIdFieldIsMissing (line 64) | public function test_Should_FailToValidate_When_ServerIdFieldIsMissing() method test_Should_FailToValidate_When_RepositoryFieldIsMissing (line 88) | public function test_Should_FailToValidate_When_RepositoryFieldIsMissi... method test_Should_FailToValidate_When_RepositoryFieldIsInvalidUrl (line 118) | public function test_Should_FailToValidate_When_RepositoryFieldIsInval... method test_Should_FailToValidate_When_StageFieldIsMissing (line 154) | public function test_Should_FailToValidate_When_StageFieldIsMissing() method test_Should_PassToValidate_When_NameFieldAndRecipeIdFieldAndServerIdFieldAndRepositoryFieldAndStageFieldAreValid (line 184) | public function test_Should_PassToValidate_When_NameFieldAndRecipeIdFi... FILE: tests/Services/Form/Project/ProjectFormTest.php class ProjectFormTest (line 5) | class ProjectFormTest extends TestCase method setUp (line 15) | public function setUp() method test_Should_SucceedToSaveAndNotAddProjectAttribute_When_ValidationPassesAndDeployPathFieldIsNotSpecified (line 24) | public function test_Should_SucceedToSaveAndNotAddProjectAttribute_Whe... method test_Should_SucceedToSaveAndAddProjectAttribute_When_ValidationPassesAndDeployPathFieldIsSpecified (line 57) | public function test_Should_SucceedToSaveAndAddProjectAttribute_When_V... method test_Should_FailToSave_When_ValidationFails (line 90) | public function test_Should_FailToSave_When_ValidationFails() method test_Should_SucceedToUpdateAndNotAddProjectAttribute_When_ValidationPassesAndDeployPathFieldIsNotSpecified (line 112) | public function test_Should_SucceedToUpdateAndNotAddProjectAttribute_W... method test_Should_SucceedToUpdateAndAddProjectAttribute_When_ValidationPassesAndDeployPathFieldIsSpecified (line 148) | public function test_Should_SucceedToUpdateAndAddProjectAttribute_When... method test_Should_FailToUpdate_When_ValidationFails (line 184) | public function test_Should_FailToUpdate_When_ValidationFails() method test_Should_GetValidationErrors (line 206) | public function test_Should_GetValidationErrors() FILE: tests/Services/Form/Recipe/RecipeFormLaravelValidatorTest.php class RecipeFormLaravelValidatorTest (line 5) | class RecipeFormLaravelValidatorTest extends TestCase method test_Should_FailToValidate_When_NameFieldIsMissing (line 7) | public function test_Should_FailToValidate_When_NameFieldIsMissing() method test_Should_FailToValidate_When_BodyFieldIsMissing (line 22) | public function test_Should_FailToValidate_When_BodyFieldIsMissing() method test_Should_PassToValidate_When_NameFieldAndBodyFieldAreValid (line 38) | public function test_Should_PassToValidate_When_NameFieldAndBodyFieldA... FILE: tests/Services/Form/Recipe/RecipeFormTest.php class RecipeFormTest (line 5) | class RecipeFormTest extends TestCase method setUp (line 13) | public function setUp() method test_Should_SucceedToSave_When_ValidationPasses (line 21) | public function test_Should_SucceedToSave_When_ValidationPasses() method test_Should_FailToSave_When_ValidationFails (line 43) | public function test_Should_FailToSave_When_ValidationFails() method test_Should_SucceedToUpdate_When_ValidationPasses (line 60) | public function test_Should_SucceedToUpdate_When_ValidationPasses() method test_Should_FailToUpdate_When_ValidationFails (line 82) | public function test_Should_FailToUpdate_When_ValidationFails() method test_Should_GetValidationErrors (line 99) | public function test_Should_GetValidationErrors() FILE: tests/Services/Form/Server/ServerFormLaravelValidatorTest.php class ServerFormLaravelValidatorTest (line 5) | class ServerFormLaravelValidatorTest extends TestCase method test_Should_FailToValidate_When_NameFieldIsMissing (line 7) | public function test_Should_FailToValidate_When_NameFieldIsMissing() method test_Should_FailToValidate_When_BodyFieldIsMissing (line 22) | public function test_Should_FailToValidate_When_BodyFieldIsMissing() method test_Should_PassToValidate_When_NameFieldAndBodyFieldAreValid (line 38) | public function test_Should_PassToValidate_When_NameFieldAndBodyFieldA... FILE: tests/Services/Form/Server/ServerFormTest.php class ServerFormTest (line 5) | class ServerFormTest extends TestCase method setUp (line 13) | public function setUp() method test_Should_SucceedToSave_When_ValidationPasses (line 21) | public function test_Should_SucceedToSave_When_ValidationPasses() method test_Should_FailToSave_When_ValidationFails (line 43) | public function test_Should_FailToSave_When_ValidationFails() method test_Should_SucceedToUpdate_When_ValidationPasses (line 60) | public function test_Should_SucceedToUpdate_When_ValidationPasses() method test_Should_FailToUpdate_When_ValidationFails (line 82) | public function test_Should_FailToUpdate_When_ValidationFails() method test_Should_GetValidationErrors (line 99) | public function test_Should_GetValidationErrors() FILE: tests/Services/Form/Setting/MailSettingFormLaravelValidatorTest.php class MailSettingFormLaravelValidatorTest (line 5) | class MailSettingFormLaravelValidatorTest extends TestCase method test_Should_PassToValidate_When_AllFieldsIsValid (line 7) | public function test_Should_PassToValidate_When_AllFieldsIsValid() method test_Should_FailToValidate_When_DriverFieldIsMissing (line 30) | public function test_Should_FailToValidate_When_DriverFieldIsMissing() method test_Should_FailToValidate_When_DriverFieldIsInvalid (line 52) | public function test_Should_FailToValidate_When_DriverFieldIsInvalid() method test_Should_FailToValidate_When_FromAddressFieldIsMissing (line 75) | public function test_Should_FailToValidate_When_FromAddressFieldIsMiss... method test_Should_FailToValidate_When_FromAddressFieldIsInvalid (line 97) | public function test_Should_FailToValidate_When_FromAddressFieldIsInva... method test_Should_PassToValidate_When_SmtpPortFieldIsEqualToMin (line 120) | public function test_Should_PassToValidate_When_SmtpPortFieldIsEqualTo... method test_Should_PassToValidate_When_SmtpPortFieldIsEqualToMax (line 143) | public function test_Should_PassToValidate_When_SmtpPortFieldIsEqualTo... method test_Should_FailToValidate_When_SmtpPortFieldIsLessThanMin (line 166) | public function test_Should_FailToValidate_When_SmtpPortFieldIsLessTha... method test_Should_FailToValidate_When_SmtpPortFieldIsGreaterThanMax (line 189) | public function test_Should_FailToValidate_When_SmtpPortFieldIsGreater... method test_Should_FailToValidate_When_SmtpEncryptionFieldIsInvalid (line 212) | public function test_Should_FailToValidate_When_SmtpEncryptionFieldIsI... FILE: tests/Services/Form/Setting/MailSettingFormTest.php class MailSettingFormTest (line 5) | class MailSettingFormTest extends TestCase method setUp (line 13) | public function setUp() method test_Should_SucceedToUpdate_When_ValidationPasses (line 21) | public function test_Should_SucceedToUpdate_When_ValidationPasses() method test_Should_FailToUpdate_When_ValidationFails (line 53) | public function test_Should_FailToUpdate_When_ValidationFails() method test_Should_GetValidationErrors (line 70) | public function test_Should_GetValidationErrors() FILE: tests/Services/Form/User/UserFormLaravelValidatorTest.php class UserFormLaravelValidatorTest (line 7) | class UserFormLaravelValidatorTest extends TestCase method test_Should_PassToValidate_When_NameFieldIsValid (line 11) | public function test_Should_PassToValidate_When_NameFieldIsValid() method test_Should_PassToValidate_When_EmailFieldIsValid (line 26) | public function test_Should_PassToValidate_When_EmailFieldIsValid() method test_Should_FailToValidate_When_EmailFieldIsInvalid (line 41) | public function test_Should_FailToValidate_When_EmailFieldIsInvalid() method test_Should_PassToValidate_When_PasswordFieldAndPasswordConfirmationFieldAreValid (line 56) | public function test_Should_PassToValidate_When_PasswordFieldAndPasswo... method test_Should_FailToValidate_When_PasswordFieldAndPasswordConfirmationFieldAreInvalid (line 72) | public function test_Should_FailToValidate_When_PasswordFieldAndPasswo... method test_Should_FailToValidate_When_PasswordFieldAndPasswordConfirmationFieldAreDifferent (line 88) | public function test_Should_FailToValidate_When_PasswordFieldAndPasswo... method test_Should_PassToValidate_When_RoleFieldIsValid (line 104) | public function test_Should_PassToValidate_When_RoleFieldIsValid() method test_Should_FailToValidate_When_RoleFieldIsInvalid (line 131) | public function test_Should_FailToValidate_When_RoleFieldIsInvalid() method test_Should_FailToValidate_When_EmailFieldIsNotUniqueAndIdFieldIsNotSpecified (line 146) | public function test_Should_FailToValidate_When_EmailFieldIsNotUniqueA... method test_Should_PassToValidate_When_EmailFieldIsNotUniqueAndIdFieldIsSpecified (line 165) | public function test_Should_PassToValidate_When_EmailFieldIsNotUniqueA... FILE: tests/Services/Form/User/UserFormTest.php class UserFormTest (line 5) | class UserFormTest extends TestCase method setUp (line 15) | public function setUp() method test_Should_SucceedToSave_When_ValidationPassesAndRoleFieldIsNotSpecified (line 24) | public function test_Should_SucceedToSave_When_ValidationPassesAndRole... method test_Should_SucceedToSave_When_ValidationPassesAndRoleFieldIsSpecified (line 45) | public function test_Should_SucceedToSave_When_ValidationPassesAndRole... method test_Should_FailToSave_When_ValidationFails (line 71) | public function test_Should_FailToSave_When_ValidationFails() method test_Should_SucceedToUpdate_When_ValidationPasses (line 88) | public function test_Should_SucceedToUpdate_When_ValidationPasses() method test_Should_FailToUpdate_When_ValidationFails (line 110) | public function test_Should_FailToUpdate_When_ValidationFails() method test_Should_SucceedToUpdatePassword_When_ValidationPasses (line 127) | public function test_Should_SucceedToUpdatePassword_When_ValidationPas... method test_Should_FailToUpdatePassword_When_ValidationFails (line 149) | public function test_Should_FailToUpdatePassword_When_ValidationFails() method test_Should_SucceedToUpdateRole_When_ValidationPasses (line 166) | public function test_Should_SucceedToUpdateRole_When_ValidationPasses() method test_Should_FailToUpdateRole_When_ValidationFails (line 188) | public function test_Should_FailToUpdateRole_When_ValidationFails() method test_Should_GetValidationErrors (line 205) | public function test_Should_GetValidationErrors() FILE: tests/Services/Notification/MailNotifierTest.php class MailNotifierTest (line 5) | class MailNotifierTest extends TestCase method test_Should_SetFromAddressAndReturnThis (line 9) | public function test_Should_SetFromAddressAndReturnThis() method test_Should_SetToAddressAndReturnThis (line 18) | public function test_Should_SetToAddressAndReturnThis() method test_Should_SendEmailNotification_When_ToAddressIsSet (line 27) | public function test_Should_SendEmailNotification_When_ToAddressIsSet() FILE: tests/Specifications/DeploymentSpecificationTest.php class DeploymentSpecificationTest (line 5) | class DeploymentSpecificationTest extends TestCase method setUp (line 11) | public function setUp() method test_Should_GetSatisfyingElements (line 18) | public function test_Should_GetSatisfyingElements() FILE: tests/Specifications/OldDeploymentSpecificationTest.php class OldDeploymentSpecificationTest (line 5) | class OldDeploymentSpecificationTest extends TestCase method setUp (line 11) | public function setUp() method test_Should_GetSatisfyingElements_When_DaysToKeepDeploymentsIsSetAndKeepLastDeploymentIsFalseAndMaxNumberDeploymentsToKeepIsSet (line 18) | public function test_Should_GetSatisfyingElements_When_DaysToKeepDeplo... method test_Should_GetSatisfyingElements_When_DaysToKeepDeploymentsIsNotSetAndKeepLastDeploymentIsFalseAndMaxNumberDeploymentsToKeepIsSet (line 75) | public function test_Should_GetSatisfyingElements_When_DaysToKeepDeplo... method test_Should_GetSatisfyingElements_When_DaysToKeepDeploymentsIsSetAndKeepLastDeploymentIsFalseAndMaxNumberDeploymentsToKeepIsNotSet (line 124) | public function test_Should_GetSatisfyingElements_When_DaysToKeepDeplo... method test_Should_GetSatisfyingElements_When_DaysToKeepDeploymentsIsSetAndKeepLastDeploymentIsTrueMaxNumberDeploymentsToKeepIsNotSet (line 162) | public function test_Should_GetSatisfyingElements_When_DaysToKeepDeplo... method test_Should_GetSatisfyingElements_When_DaysToKeepDeploymentsIsNotSetAndKeepLastDeploymentIsFalseAndMaxNumberDeploymentsToKeepIsNotSet (line 202) | public function test_Should_GetSatisfyingElements_When_DaysToKeepDeplo... method test_Should_GetSatisfyingElements_When_DeploymentsDoNotExists (line 231) | public function test_Should_GetSatisfyingElements_When_DeploymentsDoNo... FILE: tests/TestCase.php class TestCase (line 3) | class TestCase extends Illuminate\Foundation\Testing\TestCase method createApplication (line 14) | public function createApplication() method setUp (line 23) | public function setUp() method tearDown (line 32) | public function tearDown() FILE: tests/_helpers/ConsoleCommandTestHelper.php type ConsoleCommandTestHelper (line 8) | trait ConsoleCommandTestHelper method runConsoleCommand (line 10) | protected function runConsoleCommand(Command $command, $arguments = []... FILE: tests/_helpers/ControllerTestHelper.php type ControllerTestHelper (line 7) | trait ControllerTestHelper method post (line 9) | public function post($uri, array $data = [], array $headers = []) method put (line 18) | public function put($uri, array $data = [], array $headers = []) method delete (line 27) | public function delete($uri, array $data = [], array $headers = []) method auth (line 36) | protected function auth($obj = null, $data = []) FILE: tests/_helpers/DummyMiddleware.php class DummyMiddleware (line 7) | class DummyMiddleware method handle (line 16) | public function handle($request, Closure $next) FILE: tests/_helpers/Factory.php class Factory (line 5) | class Factory method build (line 7) | public static function build($class, $data = []) method create (line 14) | public static function create($class, $data = []) method buildList (line 23) | public static function buildList($class, $dataList = []) method createList (line 32) | public static function createList($class, $dataList = []) method getInstance (line 41) | protected function getInstance($class, $data = []) FILE: tests/_helpers/MockeryHelper.php type MockeryHelper (line 7) | trait MockeryHelper method tearDown (line 9) | public function tearDown() method mock (line 16) | protected function mock($class) method mockPartial (line 25) | protected function mockPartial($class)