En la mayoría (si no todos) los archivos de Magento, hay renuncias comentadas:
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE_AFL.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
*/
También hay código en algunos temas que se comentan o agregan comentarios:
// echo "PickupAtStore.days=[" . implode(',', $data) . "]\r\n</script>";
o
// Following code does X
Sé que PHP no lo ejecutará, pero no estoy seguro de si al eliminar todos estos comentarios innecesarios se acelerará un sitio web.
fuente