This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Before next release: | |
- Brain needs an error handler. Consider #vanguard | |
- Automated tests for everything | |
- Lock/unlock/enable/disable | |
- Claim | |
- GET /claim?token=123 (Jira) | |
- POST /api/v1/stacks/claim (Hubot) | |
- Deploy/rollback | |
- Webhooks from GH, Jira, and Brain |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Customer { | |
protected $machine; | |
public function __construct($machine) { | |
$this->machine = $machine; | |
} | |
public function purchase($shelf) { |