aboutsummaryrefslogtreecommitdiff
path: root/Psso/AuthFlow.php
blob: c2a68ac43d6cf57df980bfb5775a78ec30f432cc (plain)
1
2
3
4
5
6
7
8
9
<?php
namespace Psso;

abstract class AuthFlow {
    public static function nextStep(Context $context) {
        $last = array_last($context->results);
        return eval(file_get_contents(__DIR__ . '/../auth-flow.conf.php'));
    }
}