for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Magefix\Plugin;
/**
* Class DriverCurrentUrl
*
* @package Magefix\Plugin
* @author Carlo Tasca <[email protected]>
*/
trait DriverCurrentUrl
{
abstract public function getDriver();
* @return mixed
public function getDriverCurrentUrl()
return $this->getDriver()->getCurrentUrl();
}