for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* ShortenNumsFacade Class
* Created 14/01/2020
* Author: Cedric Megnie N. (Stonec0der).
* Email: [email protected]
* This facade expose the functionalities of the ShortenNums Class.
* Licence: MIT
*/
namespace Stonec0der\ShortenNums;
use Illuminate\Support\Facades\Facade;
* @see \Stonec0der\ShortenNums\Skeleton\SkeletonClass
class ShortenNumsFacade extends Facade
{
* Get the registered name of the component.
* @return string
protected static function getFacadeAccessor()
return 'shorten-nums';
}