diff --git a/library/Pushy/Priority/LowestPriority.php b/library/Pushy/Priority/LowestPriority.php new file mode 100644 index 0000000..bea0250 --- /dev/null +++ b/library/Pushy/Priority/LowestPriority.php @@ -0,0 +1,21 @@ + + * @copyright Copyright (c) 2013-2014 Michael K. Squires + * @license http://github.com/sqmk/Pushy/wiki/License + */ + +namespace Pushy\Priority; + +/** + * Lowest Priority + */ +class LowestPriority extends AbstractPriority +{ + /** + * Priority code + */ + const CODE = -2; +}