Example #1
0
 /**
  * Property to pass to the new project.
  * The property is passed as a 'user property'
  *
  * @access      public
  */
 function createProperty()
 {
     $p = new PropertyTask();
     $p->setFallback($this->newProject);
     $p->setUserProperty(true);
     $this->properties[] = $p;
     return $p;
 }
Example #2
0
 /**
  * Creates a child property.
  * @return \PropertyTask
  */
 public function createProperty()
 {
     $this->properties[] = $return = new \PropertyTask();
     $return->setPrefix($this->getPlugin());
     return $return;
 }