Questo è il mio file di blocco:
<?php
namespace ChennaiBox\Mymail\Block\Mail;
class MailContent extends \Magento\Framework\View\Element\Template
{
protected $_objectManager;
protected $customerSession;
public function __construct(
\Magento\Customer\Model\Session $customerSession,
\Magento\Framework\ObjectManagerInterface $objectManager
) {
$this->customerSession = $customerSession;
$this->_objectManager = $objectManager;
}
public function mymailData()
{
try{
if ($this->customerSession->isLoggedIn()) {
$cutomerEmail =(string)$this->customerSession->getCustomer()->getEmail();
echo $cutomerEmail;
else{
$this->_redirect('customer/account/login/');
}
}catch (Exception $e) {
$e->getMessage();
}
}
}
Se chiamo questo blocco ottengo un errore
Errore irreversibile PHP: chiamata a un invio di funzioni membro () su null in /var/www/html/magento2/vendor/magento/framework/View/Element/AbstractBlock.php sulla riga 642, referer: http: //magentodev.gworks .mobi / magento2 / cliente / account / index /
dal error.log
file apache ., perché, suggeriscimi come risolvere questo problema.