You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've read and re-read the specs, and had a peer search as well, and I am not finding clarity that there MUST be a blank line between class methods. All the examples show it, but it doesn't seem to be clear that it is required in the spec.
For example, this seems to be allowed:
class BlankLine
{
public function firstMethod()
{
...
}
public function nextMethod()
{
...
}
}
When it should be this instead:
class BlankLine
{
public function firstMethod()
{
...
}
public function nextMethod()
{
...
}
}
Can anyone prove me wrong in the spec? If not, I'll get a PR open to clarify this.
The text was updated successfully, but these errors were encountered:
I've read and re-read the specs, and had a peer search as well, and I am not finding clarity that there MUST be a blank line between class methods. All the examples show it, but it doesn't seem to be clear that it is required in the spec.
For example, this seems to be allowed:
When it should be this instead:
Can anyone prove me wrong in the spec? If not, I'll get a PR open to clarify this.
The text was updated successfully, but these errors were encountered: