-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
abb647b
commit d3f0aa0
Showing
5 changed files
with
74 additions
and
76 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
namespace CloudinaryLabs\CloudinaryLaravel\Console; | ||
|
||
use Illuminate\Console\Command; | ||
|
||
class LivewireCommand extends Command | ||
{ | ||
protected $signature = 'cloudinary:livewire'; | ||
|
||
protected $description = 'Install the Livewire components'; | ||
|
||
protected $hidden = true; | ||
|
||
public function handle() | ||
{ | ||
$this->info('Installing Cloudinary Livewire components...'); | ||
} | ||
} |
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,19 @@ | ||
<?php | ||
|
||
namespace CloudinaryLabs\CloudinaryLaravel\Console; | ||
|
||
use Illuminate\Console\Command; | ||
|
||
class ReactCommand extends Command | ||
{ | ||
protected $signature = 'cloudinary:react'; | ||
|
||
protected $description = 'Install the React components'; | ||
|
||
protected $hidden = true; | ||
|
||
public function handle() | ||
{ | ||
$this->info('Installing Cloudinary React components...'); | ||
} | ||
} |
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,19 @@ | ||
<?php | ||
|
||
namespace CloudinaryLabs\CloudinaryLaravel\Console; | ||
|
||
use Illuminate\Console\Command; | ||
|
||
class VueCommand extends Command | ||
{ | ||
protected $signature = 'cloudinary:vue'; | ||
|
||
protected $description = 'Install the Vue components'; | ||
|
||
protected $hidden = true; | ||
|
||
public function handle() | ||
{ | ||
$this->info('Installing Cloudinary Vue components...'); | ||
} | ||
} |