This file contains hidden or 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
| /* | |
| * mailConverter Script | |
| * author: Roman Kuba, Codebryo | |
| * web: codebryo.com | |
| * | |
| */ | |
| // Lets pretend you want to have mail-address on your website but maybe want to protect it from being grabbed through bots | |
| // This script turns a textelement into an useable link | |
| // It removes spaces and replaces [at] with @ and [dot] with . |
This file contains hidden or 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
| <?php namespace Codebryo\Aidkit\Commands; | |
| use Illuminate\Console\Command; | |
| use \File; | |
| use Illuminate\Support\Pluralizer; | |
| use Symfony\Component\Console\Input\InputOption; | |
| use Symfony\Component\Console\Input\InputArgument; | |
| class GenerateCommand extends Command { |
NewerOlder