Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion language/oop5/interfaces.xml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ class C2 implements I
// This example creates a virtual property, which is fine.
public string $writeable {
get => $this->written;
set => $value;
set {
$this->written = $value;
}
}

// This property requires both read and write be possible,
Expand Down