mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-10 21:08:41 +00:00
14 lines
133 B
PHP
Executable File
14 lines
133 B
PHP
Executable File
<?php
|
|
|
|
namespace Mpdf\Css;
|
|
|
|
class Border
|
|
{
|
|
|
|
const ALL = 15;
|
|
const TOP = 8;
|
|
const RIGHT = 4;
|
|
const BOTTOM = 2;
|
|
const LEFT = 1;
|
|
}
|