Current File : /home/getxxhzo/xpertbee.com/wp-content/plugins/hurrytimer/includes/ConditionalLogic.php
<?php
namespace HurryTimer;

class ConditionalLogic
{
    protected $rules = [];

    function addRule($rule)
    {
        $this->rules[$rule['key']] = $rule;

        return $this;
    }

    function get()
    {
        return $this->rules;
    }
}