for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Vinelab\UrlShortener;
use Vinelab\UrlShortener\Base\Handler;
use Vinelab\UrlShortener\Contracts\ShortenInterface;
/**
* Class Shorten is the API (entry point) to the public functionality of the package.
*
* @category API
* @author Mahmoud Zalt <[email protected]>
*/
class Shorten extends Handler implements ShortenInterface
{
* {@inheritdoc}
public function url($url)
return $this->getDriver()->shorten($url);
}