Skip to content

Commit 9f7aeef

Browse files
committed
Sync upstream (3.0)
1 parent a78d693 commit 9f7aeef

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

app/Provider.php

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?php namespace App;
2+
3+
use System\Classes\AppBase;
4+
5+
/**
6+
* Provider is an application level plugin, all registration methods are supported.
7+
*/
8+
class Provider extends AppBase
9+
{
10+
/**
11+
* register method, called when the app is first registered.
12+
*
13+
* @return void
14+
*/
15+
public function register()
16+
{
17+
parent::register();
18+
}
19+
20+
/**
21+
* boot method, called right before the request route.
22+
*
23+
* @return void
24+
*/
25+
public function boot()
26+
{
27+
parent::boot();
28+
}
29+
}

app/blueprints/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)