for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @package WPEmerge
* @author Atanas Angelov <[email protected]>
* @copyright 2018 Atanas Angelov
* @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0
* @link https://wpemerge.com/
*/
namespace WPEmerge\Facades;
use WPEmerge\Support\Facade;
* Provide access to the application instance.
*
* @codeCoverageIgnore
* @see \WPEmerge\Application\Application
class Application extends Facade {
protected static function getFacadeAccessor() {
return WPEMERGE_APPLICATION_KEY;
}