9 lines
110 B
PHP
9 lines
110 B
PHP
<?php
|
|
|
|
namespace Modules\Payment;
|
|
|
|
interface ShouldRedirect
|
|
{
|
|
public function getRedirectUrl();
|
|
}
|