Skip to content

Commit cbec8dc

Browse files
committed
Return this from command logo function - got changed during rebase somwhow
1 parent 757349f commit cbec8dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Input/Command.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@ public function bind(?App $app = null): self
166166
public function logo(?string $logo = null)
167167
{
168168
if (func_num_args() === 0) {
169-
return $this->_logo;
169+
return $this->logo;
170170
}
171171

172-
$this->_logo = $logo;
172+
$this->logo = $logo;
173173

174-
return $this->_logo;
174+
return $this;
175175
}
176176

177177
/**

0 commit comments

Comments
 (0)