for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Foundation;
use Arcanesoft\Foundation\Contracts\Foundation as FoundationContract;
use Illuminate\Contracts\Foundation\Application;
/**
* Class Foundation
*
* @package Arcanesoft\Foundation
* @author ARCANEDEV <[email protected]>
*/
class Foundation implements FoundationContract
{
/* ------------------------------------------------------------------------------------------------
| Constants
| ------------------------------------------------------------------------------------------------
const VERSION = '1.5.1';
| Properties
* The application instance.
* @var \Illuminate\Contracts\Foundation\Application
protected $app;
| Constructor
* Foundation constructor.
* @param \Illuminate\Contracts\Foundation\Application $app
public function __construct(Application $app)
$this->app = $app;
}
| Getters & Setters
* Get the package version.
* @return string
public function version()
return self::VERSION;