aboutsummaryrefslogtreecommitdiff
path: root/engine/RedirectResponse.php
blob: 4526c6c1a75c0158f71f0876bbe2f15af0885058 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

class RedirectResponse extends Response {

    public function __construct(string $url, int $code = 302) {
        parent::__construct($code);
        $this->addHeader('Location: '.$url);
    }

}