Complex classes like DeploymentStrategy often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use DeploymentStrategy, and based on these observations, apply Extract Interface, too.
| 1 | <?php  | 
            ||
| 3 | class DeploymentStrategy extends ViewableData { | 
            ||
| 4 | |||
| 5 | const SUCCESS_CODE = 'success';  | 
            ||
| 6 | |||
| 7 | const WARNING_CODE = 'warning';  | 
            ||
| 8 | |||
| 9 | const ERROR_CODE = 'error';  | 
            ||
| 10 | |||
| 11 | /**  | 
            ||
| 12 | * @var DNEnvironment  | 
            ||
| 13 | */  | 
            ||
| 14 | protected $environment;  | 
            ||
| 15 | |||
| 16 | /**  | 
            ||
| 17 | * @var string  | 
            ||
| 18 | */  | 
            ||
| 19 | protected $actionTitle = 'Deploy';  | 
            ||
| 20 | |||
| 21 | /**  | 
            ||
| 22 | * @var string  | 
            ||
| 23 | */  | 
            ||
| 24 | protected $actionCode = 'default';  | 
            ||
| 25 | |||
| 26 | /**  | 
            ||
| 27 | * @var int  | 
            ||
| 28 | */  | 
            ||
| 29 | protected $estimatedTime = 0;  | 
            ||
| 30 | |||
| 31 | /**  | 
            ||
| 32 | * @var array  | 
            ||
| 33 | */  | 
            ||
| 34 | protected $changes = [];  | 
            ||
| 35 | |||
| 36 | /**  | 
            ||
| 37 | * @var array  | 
            ||
| 38 | */  | 
            ||
| 39 | protected $options;  | 
            ||
| 40 | |||
| 41 | /**  | 
            ||
| 42 | * Validation code  | 
            ||
| 43 | *  | 
            ||
| 44 | * @var string  | 
            ||
| 45 | */  | 
            ||
| 46 | protected $validationCode = DeploymentStrategy::SUCCESS_CODE;  | 
            ||
| 47 | |||
| 48 | /**  | 
            ||
| 49 | * @var array  | 
            ||
| 50 | */  | 
            ||
| 51 | protected $messages = [];  | 
            ||
| 52 | |||
| 53 | |||
| 54 | /**  | 
            ||
| 55 | * @param DNEnvironment $environment  | 
            ||
| 56 | * @param array $options  | 
            ||
| 57 | */  | 
            ||
| 58 | 	public function __construct(DNEnvironment $environment, $options = array()) { | 
            ||
| 62 | |||
| 63 | /**  | 
            ||
| 64 | * @param string $title  | 
            ||
| 65 | */  | 
            ||
| 66 | 	public function setActionTitle($title) { | 
            ||
| 69 | |||
| 70 | /**  | 
            ||
| 71 | * @return string  | 
            ||
| 72 | */  | 
            ||
| 73 | 	public function getActionTitle() { | 
            ||
| 76 | |||
| 77 | /**  | 
            ||
| 78 | */  | 
            ||
| 79 | 	public function setActionCode($code) { | 
            ||
| 82 | |||
| 83 | /**  | 
            ||
| 84 | * @return string  | 
            ||
| 85 | */  | 
            ||
| 86 | 	public function getActionCode() { | 
            ||
| 89 | |||
| 90 | /**  | 
            ||
| 91 | * @param int  | 
            ||
| 92 | */  | 
            ||
| 93 | 	public function setEstimatedTime($seconds) { | 
            ||
| 96 | |||
| 97 | /**  | 
            ||
| 98 | * @return int Time in minutes  | 
            ||
| 99 | */  | 
            ||
| 100 | 	public function getEstimatedTime() { | 
            ||
| 103 | |||
| 104 | /**  | 
            ||
| 105 | * @param string $title  | 
            ||
| 106 | * @param string $from  | 
            ||
| 107 | * @param string $to  | 
            ||
| 108 | */  | 
            ||
| 109 | 	public function setChange($title, $from, $to) { | 
            ||
| 121 | |||
| 122 | /**  | 
            ||
| 123 | * @param string $title  | 
            ||
| 124 | * @param string $desc  | 
            ||
| 125 | */  | 
            ||
| 126 | 	public function setChangeDescriptionOnly($title, $desc) { | 
            ||
| 131 | |||
| 132 | /**  | 
            ||
| 133 | * Filter the changeset where modification was not required.  | 
            ||
| 134 | *  | 
            ||
| 135 | * @return array  | 
            ||
| 136 | */  | 
            ||
| 137 | 	public function getChangesModificationNeeded() { | 
            ||
| 152 | |||
| 153 | /**  | 
            ||
| 154 | * @return array Associative array of changes, e.g.  | 
            ||
| 155 | * array(  | 
            ||
| 156 | * 'SHA' => array(  | 
            ||
| 157 | * 'from' => 'abc',  | 
            ||
| 158 | * 'to' => 'def'  | 
            ||
| 159 | * )  | 
            ||
| 160 | * )  | 
            ||
| 161 | */  | 
            ||
| 162 | 	public function getChanges() { | 
            ||
| 176 | |||
| 177 | /**  | 
            ||
| 178 | * Returns a change or a given key.  | 
            ||
| 179 | *  | 
            ||
| 180 | * @return ArrayData|null  | 
            ||
| 181 | */  | 
            ||
| 182 | 	public function getChange($key) { | 
            ||
| 189 | |||
| 190 | /**  | 
            ||
| 191 | * @param string $option  | 
            ||
| 192 | * @param string $value  | 
            ||
| 193 | */  | 
            ||
| 194 | 	public function setOption($option, $value) { | 
            ||
| 197 | |||
| 198 | /**  | 
            ||
| 199 | * @param string $option  | 
            ||
| 200 | * @return string|null  | 
            ||
| 201 | */  | 
            ||
| 202 | 	public function getOption($option) { | 
            ||
| 207 | |||
| 208 | /**  | 
            ||
| 209 | * @return string  | 
            ||
| 210 | */  | 
            ||
| 211 | 	public function getOptions() { | 
            ||
| 214 | |||
| 215 | /**  | 
            ||
| 216 | * @param string $code  | 
            ||
| 217 | */  | 
            ||
| 218 | 	public function setValidationCode($code) { | 
            ||
| 221 | |||
| 222 | /**  | 
            ||
| 223 | * @return string  | 
            ||
| 224 | */  | 
            ||
| 225 | 	public function getValidationCode() { | 
            ||
| 228 | |||
| 229 | /**  | 
            ||
| 230 | * @param string $msg  | 
            ||
| 231 | */  | 
            ||
| 232 | 	public function setMessage($msg, $code = self::ERROR_CODE) { | 
            ||
| 248 | |||
| 249 | /**  | 
            ||
| 250 | * @return array  | 
            ||
| 251 | */  | 
            ||
| 252 | 	public function getMessages() { | 
            ||
| 255 | |||
| 256 | /**  | 
            ||
| 257 | * Transform the deployment strategy to an array.  | 
            ||
| 258 | *  | 
            ||
| 259 | * @return array  | 
            ||
| 260 | */  | 
            ||
| 261 | 	public function toArray() { | 
            ||
| 282 | |||
| 283 | /**  | 
            ||
| 284 | * @return string  | 
            ||
| 285 | */  | 
            ||
| 286 | 	public function toJSON() { | 
            ||
| 289 | |||
| 290 | /**  | 
            ||
| 291 | * Load from JSON associative array.  | 
            ||
| 292 | * Environment must be set by the callee when creating this object.  | 
            ||
| 293 | *  | 
            ||
| 294 | * @param string $json  | 
            ||
| 295 | */  | 
            ||
| 296 | 	public function fromJSON($json) { | 
            ||
| 300 | |||
| 301 | /**  | 
            ||
| 302 | * Load from array.  | 
            ||
| 303 | * Environment must be set by the callee when creating this object.  | 
            ||
| 304 | *  | 
            ||
| 305 | * @param string $data  | 
            ||
| 306 | */  | 
            ||
| 307 | 	public function fromArray($data) { | 
            ||
| 324 | |||
| 325 | /**  | 
            ||
| 326 | * @return DNDeployment  | 
            ||
| 327 | */  | 
            ||
| 328 | 	public function createDeployment() { | 
            ||
| 338 | |||
| 339 | }  | 
            ||
| 340 | |||
| 341 | 
Since your code implements the magic setter
_set, this function will be called for any write access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.Since the property has write access only, you can use the @property-write annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.