1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
/**
* Returns deployment algorithm
*
* PHP Version 5.3
*
* LICENSE: This source file is subject to LGPLv2.1 license
* that is available through the world-wide-web at the following URI:
* http://www.gnu.org/licenses/lgpl-2.1.html
*
* @author CUNY SPS
*
* Copyright of the Sahana Software Foundation, sahanafoundation.org
*
*/
class agDeploymentAlgorithm extends BaseagDeploymentAlgorithm
{
/**
*
* @return a string representation of the deployment algorithm.
*/
public function __toString()
{
return $this->getDeploymentAlgorithm();
}
}
|