Highway to PSR2
[openemr.git] / interface / super / rules / library / RuleActions.php
blobabf88e73291504165506b33d82d69d79cda82a1f
1 <?php
2 // Copyright (C) 2010-2011 Aron Racho <aron@mi-squred.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 /**
10 * Description of RuleActions
12 * @author aron
14 class RuleActions
16 var $actions = array();
18 function __construct()
22 /**
23 * @param RuleAction $action
25 function add($action)
27 array_push($this->actions, $action);