Skip to content

Instantly share code, notes, and snippets.

@edkoster
edkoster / sandbox.php
Last active May 30, 2022 11:11
Magento 2 sanbox file
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
try {
require __DIR__ . '/app/bootstrap.php';
} catch (\Exception $e) {
echo $e->getMessage();
exit(1);