Skip to content

Commit

Permalink
Fix typo: aristan → artisan.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtvbrianking committed Jan 31, 2021
1 parent 182e0de commit 809d578
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion resources/js/components/Commander.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="artisan row">
<div class="commander row">
<div class="col-lg-3 col-md-4 col-sm-5">
<div class="card">
<div class="card-body">
Expand Down
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use Bmatovu\AristanGui\Http\CommandController;
use Bmatovu\ArtisanGui\Http\CommandController;
use Illuminate\Support\Facades\Route;

Route::pattern('command', '^[a-z0-9\-\:]*$');
Expand Down
4 changes: 2 additions & 2 deletions src/Http/CommandController.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Bmatovu\AristanGui\Http;
namespace Bmatovu\ArtisanGui\Http;

use Bmatovu\AristanGui\Support\Commander;
use Bmatovu\ArtisanGui\Support\Commander;
use Illuminate\Contracts\Console\Kernel;
use Illuminate\Contracts\Validation\Factory as ValidationFactory;
use Illuminate\Http\Request;
Expand Down
2 changes: 1 addition & 1 deletion src/Support/Commander.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Bmatovu\AristanGui\Support;
namespace Bmatovu\ArtisanGui\Support;

use Illuminate\Contracts\Console\Kernel;
use Symfony\Component\Console\Command\Command;
Expand Down

0 comments on commit 809d578

Please sign in to comment.