Navigation Menu

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust technical guidelines event observer example #4328

Merged
2 changes: 1 addition & 1 deletion guides/v2.1/coding-standards/technical-guidelines.md
Expand Up @@ -690,7 +690,7 @@ We are reviewing this section and will publish it soon.

{% collapsible Example: %}
```php
class SampleEventObserverThatModifiesInputs
class SampleEventObserverThatModifiesInputs implements \Magento\Framework\Event\ObserverInterface
ronak2ram marked this conversation as resolved.
Show resolved Hide resolved
{
/**
* @param \Magento\Framework\Event\Observer $observer
Expand Down
2 changes: 1 addition & 1 deletion guides/v2.2/coding-standards/technical-guidelines.md
Expand Up @@ -772,7 +772,7 @@ class View extends Template

{% collapsible Example: %}
```php
class SampleEventObserverThatModifiesInputs
class SampleEventObserverThatModifiesInputs implements \Magento\Framework\Event\ObserverInterface
{
/**
* @param \Magento\Framework\Event\Observer $observer
Expand Down