9 lines
110 B
PHP
Raw Permalink Normal View History

2017-05-21 12:03:05 -04:00
<?php
namespace BusinessLogic\Navigation;
class Direction {
const UP = 'up';
const DOWN = 'down';
}