16 lines
289 B
PHP
Executable File
16 lines
289 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Controllers\Article;
|
|
|
|
abstract class Controller
|
|
{
|
|
protected $aDataCommon = [];
|
|
|
|
public function __construct()
|
|
{
|
|
// $this->sAppName = env('APP_NAME');
|
|
// $this->sAppURL = 1;
|
|
// $this->aDataCommon["wocao"] = 'wocaocao';
|
|
}
|
|
}
|