for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File: UrlProvider.php
*
* @author Maciej Sławik <[email protected]>
* Github: https://github.com/maciejslawik
*/
namespace MSlwk\Otomoto\App\Base;
* Class UrlProvider
* @package MSlwk\Otomoto\App\Base
class UrlProvider implements UrlPoviderInterface
{
const OTOMOTO_URL = 'https://www.otomoto.pl';
* @return string
public function getBaseUrl(): string
return self::OTOMOTO_URL;
}