Running 0.13.3 on OS X (installed via Homebrew). terminus secrets show throws a fatal error:
PHP Fatal error: Uncaught Error: Class 'Terminus\Models\Collections\Sites' not found in /Users/gchaix/terminus/plugins/terminus-secrets-plugin/Commands/SecretsCommand.php:33
Changing line 10 of SecretsCommand.php from use Terminus\Models\Collections\Sites; to use Terminus\Collections\Sites; resolves the issue.
n.b. Do not use master any longer. The Terminus 0.x version is on the 0.x branch, and the 1.x version is on the 1.x branch. The master branch will be deleted shortly.
Running 0.13.3 on OS X (installed via Homebrew).
terminus secrets show
throws a fatal error:PHP Fatal error: Uncaught Error: Class 'Terminus\Models\Collections\Sites' not found in /Users/gchaix/terminus/plugins/terminus-secrets-plugin/Commands/SecretsCommand.php:33
Changing line 10 of SecretsCommand.php from
use Terminus\Models\Collections\Sites;
touse Terminus\Collections\Sites;
resolves the issue.