propelorm/Propel2

View on GitHub
src/Propel/Generator/Model/MappingModelInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * MIT License. This file is part of the Propel package.
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Propel\Generator\Model;

/**
 * An interface for representing mapping model objects.
 *
 * @author Hugo Hamon <webmaster@apprendre-php.com> (Propel)
 */
interface MappingModelInterface
{
    /**
     * @var string
     */
    public const DEFAULT_STRING_FORMAT = 'YAML';

    /**
     * @var string
     */
    public const VISIBILITY_PUBLIC = 'public';

    /**
     * @var string
     */
    public const VISIBILITY_PRIVATE = 'private';

    /**
     * @var string
     */
    public const VISIBILITY_PROTECTED = 'protected';

    /**
     * Loads a model definition from an array.
     *
     * @param array $attributes
     *
     * @return void
     */
    public function loadMapping(array $attributes): void;
}