2017-01-22 23:47:24 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Created by PhpStorm.
|
|
|
|
* User: Игорь
|
|
|
|
* Date: 23.01.2017
|
|
|
|
* Time: 01:49
|
|
|
|
*/
|
|
|
|
|
2017-01-23 10:25:19 +00:00
|
|
|
namespace PFRM;
|
2017-01-22 23:47:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Controller {
|
|
|
|
|
2017-01-23 10:25:19 +00:00
|
|
|
public $app;
|
|
|
|
|
2017-01-22 23:47:24 +00:00
|
|
|
function __construct() {
|
2017-01-23 10:25:19 +00:00
|
|
|
global $app;
|
|
|
|
$this->app = $app;
|
2017-01-22 23:47:24 +00:00
|
|
|
session_start();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|