PluginProbe
Independent Analytics – WordPress Analytics Plugin / 2.9.2
Independent Analytics – WordPress Analytics Plugin v2.9.2
2.15.5 2.15.4 2.15.3 2.15.2 2.15.1 2.15.0 2.14.10 trunk 1.1 1.10 1.10.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.17.1 1.17.2 1.17.3 1.17.4 1.18 1.18.1 1.19.0 All 120 releases
independent-analytics / vendor / illuminate / database / Events / SchemaLoaded.php
SchemaLoaded.php
40 lines 790 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace IAWPSCOPED\Illuminate\Database\Events;
4
5 /** @internal */
6 class SchemaLoaded
7 {
8 /**
9 * The database connection instance.
10 *
11 * @var \Illuminate\Database\Connection
12 */
13 public $connection;
14 /**
15 * The database connection name.
16 *
17 * @var string
18 */
19 public $connectionName;
20 /**
21 * The path to the schema dump.
22 *
23 * @var string
24 */
25 public $path;
26 /**
27 * Create a new event instance.
28 *
29 * @param \Illuminate\Database\Connection $connection
30 * @param string $path
31 * @return void
32 */
33 public function __construct($connection, $path)
34 {
35 $this->connection = $connection;
36 $this->connectionName = $connection->getName();
37 $this->path = $path;
38 }
39 }
40