aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/system/SlimAppEvent.php
blob: 4bec24040e22b5f9def9bd98b8fb7cd465a5064a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
 * UserFrosting (http://www.userfrosting.com)
 *
 * @link      https://github.com/userfrosting/UserFrosting
 * @license   https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
 */

namespace UserFrosting\System;

use RocketTheme\Toolbox\Event\Event;
use Slim\App;

/**
 * Used for events that need to access the Slim application.
 */
class SlimAppEvent extends Event
{
    protected $app;

    public function __construct(App $app) {
        $this->app = $app;
    }

    public function getApp() {
        return $this->app;
    }
}