File "Pizza.php"

Full Path: /var/www/html/back/vendor/phpdocumentor/reflection/tests/integration/data/Pizza.php
File size: 626 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * This file is part of phpDocumentor.
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 * @copyright 2010-2018 Mike van Riel<mike@phpdoc.org>
 * @license   http://www.opensource.org/licenses/mit-license.php MIT
 * @link      http://phpdoc.org
 */

/**
 * This needs a docblock to separate from
 * file docblock
 */
const OVEN_TEMPERATURE = 9001;
define('MAX_OVEN_TEMPERATURE', 9002);

/**
 * Pizza base class
 */
class Pizza
{
    /**
     * The packaging method used to transport the pizza.
     */
    const PACKAGING = 'box';
}