Login.php 243 B

123456789101112131415
  1. <?php
  2. namespace Smartwave\Porto\Block\Form;
  3. use Magento\Customer\Block\Form\Login as BaseLogin;
  4. class Login extends BaseLogin
  5. {
  6. /**
  7. * @return $this
  8. */
  9. protected function _prepareLayout()
  10. {
  11. return $this;
  12. }
  13. }