rspec/rules/S1186/php/rule.adoc
Rudy Regazzoni 1763d7fe2b
Modify S1186: Migrate to LayC - empty methods (#3285)
## Review

A dedicated reviewer checked the rule description successfully for:

- [ ] logical errors and incorrect information
- [ ] information gaps and missing content
- [ ] text style and tone
- [ ] PR summary and labels follow [the
guidelines](https://github.com/SonarSource/rspec/#to-modify-an-existing-rule)
2023-10-18 18:21:32 +02:00

68 lines
1.2 KiB
Plaintext

== Why is this an issue?
:operationName: function
include::../description.adoc[]
=== Exceptions
This rule doesn't raise an issue on empty methods in abstract classes.
[source,php]
----
abstract class Animal {
public function speak() {} // default implementation ignored
}
----
== How to fix it
=== Code examples
==== Noncompliant code example
[source,php,diff-id=1,diff-type=noncompliant]
----
public function shouldNotBeEmpty() { // Noncompliant - method is empty
}
public function notImplemented() { // Noncompliant - method is empty
}
public function emptyOnPurpose() { // Noncompliant - method is empty
}
----
==== Compliant solution
[source,php,diff-id=1,diff-type=compliant]
----
public function shouldNotBeEmpty() {
doSomething();
}
public function notImplemented() {
throw new Exception('notImplemented() cannot be performed because ...');
}
public function emptyOnPurpose() {
// comment explaining why the method is empty
}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]