Skip to content

Commit

Permalink
GitHub #60 - Add lowest priority class
Browse files Browse the repository at this point in the history
  • Loading branch information
sqmk committed Oct 15, 2014
1 parent bc3d5e0 commit 50bbe21
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions library/Pushy/Priority/LowestPriority.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
/**
* Pushy: Pushover PHP Client
*
* @author Michael Squires <[email protected]>
* @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;
}

0 comments on commit 50bbe21

Please sign in to comment.