In den meisten (wenn nicht allen) Magento-Dateien gibt es kommentierte Haftungsausschlüsse:
/**
* 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 license@magento.com so we can send you a copy immediately.
*
*/
Es gibt auch Code in einigen Themen, die auskommentiert sind oder Kommentare hinzufügen:
// echo "PickupAtStore.days=[" . implode(',', $data) . "]\r\n</script>";
oder
// Following code does X
Ich weiß, dass PHP es nicht ausführen wird, aber ich bin nicht sicher, ob durch das Entfernen all dieser unnötigen Kommentare eine Website beschleunigt wird?