We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c5fd95 commit a570775Copy full SHA for a570775
cli/Valet/Cloudflared.php
@@ -6,8 +6,6 @@
6
7
class Cloudflared
8
{
9
- public $brew_formula = 'cloudflare/cloudflare/cloudflared';
10
-
11
public function __construct(public CommandLine $cli, public Brew $brew)
12
13
}
@@ -44,14 +42,14 @@ public function currentTunnelUrl(?string $domain = null)
44
42
*/
45
43
public function installed(): bool
46
47
- return $this->brew->installed($this->brew_formula);
+ return $this->brew->installed('cloudflared');
48
49
50
/**
51
* Make sure cloudflared is installed.
52
53
public function ensureInstalled(): void
54
55
- $this->brew->ensureInstalled($this->brew_formula);
+ $this->brew->ensureInstalled('cloudflared');
56
57
0 commit comments