Просмотр файла vendor/laravel/framework/src/Illuminate/Foundation/Events/VendorTagPublished.php
<?php namespace Illuminate\Foundation\Events; class VendorTagPublished { /** * The vendor tag that was published. * * @var string */ public $tag; /** * The publishable paths registered by the tag. * * @var array */ public $paths; /** * Create a new event instance. * * @param string $tag * @param array $paths * @return void */ public function __construct($tag, $paths) { $this->tag = $tag; $this->paths = $paths; } }