1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34:
<?php
/**
* Builder contexts.
*
* @author Whizark <contact@whizark.com>
* @see http://whizark.com
* @copyright Copyright (C) 2016 Whizark.
* @license MIT
*/
namespace Ecailles\DomClassName\Bem;
/**
* Class Contexts
*
* @package Ecailles\DomClassName\Bem
*/
class Contexts
{
/**
* @var string The normal context.
*/
const NORMAL = 'normal';
/**
* @var string The Block context.
*/
const BLOCK = 'block';
/**
* @var string The Element context.
*/
const ELEMENT = 'element';
}