home
/
zktecojo
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Console
➕ New
📤 Upload
✎ Editing:
KeyGenerateCommand.php
← Back
<?php namespace Illuminate\Foundation\Console; use Illuminate\Support\Str; use Illuminate\Console\Command; use Illuminate\Filesystem\Filesystem; class KeyGenerateCommand extends Command { /** * The console command name. * * @var string */ protected $name = 'key:generate'; /** * The console command description. * * @var string */ protected $description = "Set the application key"; /** * Create a new key generator command. * * @param \Illuminate\Filesystem\Filesystem $files * @return void */ public function __construct(Filesystem $files) { parent::__construct(); $this->files = $files; } /** * Execute the console command. * * @return void */ public function fire() { list($path, $contents) = $this->getKeyFile(); $key = $this->getRandomKey(); $contents = str_replace($this->laravel['config']['app.key'], $key, $contents); $this->files->put($path, $contents); $this->laravel['config']['app.key'] = $key; $this->info("Application key [$key] set successfully."); } /** * Get the key file and contents. * * @return array */ protected function getKeyFile() { $env = $this->option('env') ? $this->option('env').'/' : ''; $contents = $this->files->get($path = $this->laravel['path']."/config/{$env}app.php"); return array($path, $contents); } /** * Generate a random key for the application. * * @return string */ protected function getRandomKey() { return Str::random(32); } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel