ݺߣs of my presentation in the PHP Conference 2015. Why should you automate ? How to do that ?
Those slides gives you a brief introduction to Phing world from the very basic to the integration with Jenkins
Conference website http://phpconference.com.br/
47. <?php
require_once 'phing/Task.php';
class MarabesiTask
{
private $message = null;
private $project = null;
public function setMessage($str)
{
$this->message = $str;
}
public function init()
{}
public function main()
{
print($this->message);
}
public function setProject($project)
{
$this->project = $project;
}
}