<?php

namespace App\Console\Commands\Mock;

use Illuminate\Console\Command;

class MockAllCommand extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'mock:all';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Call all mock commands';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        $this->call('mock:user');
        $this->call('mock:capsule');
        $this->call('mock:like');
        $this->call('mock:comment');
        $this->call('mock:subscriber');
        $this->call('mock:friend');
        $this->call('mock:invite');
        $this->call('mock:notification');
        $this->call('mock:removed_timeline');
    }
}
