Leadtech/BootFramework

View on GitHub
src/Leadtech/Boot/Boot.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Boot;

/**
 * Interface Boot.
 *
 * @author  Daan Biesterbos <daan@leadtech.nl>
 */
interface Boot
{
    const PRODUCTION = 'prod';
    const DEVELOPMENT = 'dev';
    const TEST = 'test';
}