• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

anorgan / QuTee / 54
57%

Build:
DEFAULT BRANCH: master
Ran 16 Feb 2017 10:42AM UTC
Jobs 3
Files 9
Run time 6s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
54

Pull #20

travis-ci

web-flow
Provide method name to TaskInterface

allows for the task object to take the form
```
class myTask implements TaskInterface {
    protected $_data;
    public function run($methodName='')
    {
        if(method_exists($this, $methodName)){
            return call_user_func_array(array($this, $methodName), $this->_data);
        }
        return false;
    }

    public function setData(array $data)
    {
        $this->_data = $data;
    }

    protected function myMethodThatReceivesTheDataSetAsParameters($param1, $param2)
    {
        echo "$param1 \n";
        echo "$param2 \n";
    }
}
```
Pull Request #20: Provide method name to TaskInterface

2 of 2 new or added lines in 1 file covered. (100.0%)

150 of 265 relevant lines covered (56.6%)

3.48 hits per line

Jobs
ID Job ID Ran Files Coverage
3 54.3 16 Feb 2017 10:42AM UTC 0
56.82
Travis Job 54.3
4 54.4 16 Feb 2017 10:42AM UTC 0
56.82
Travis Job 54.4
5 54.5 16 Feb 2017 10:42AM UTC 0
57.63
Travis Job 54.5
Source Files on build 54
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #54
  • Pull Request #20
  • PR Base - master (#52)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc