1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Fix autoload redirect failure (#788)

This commit is contained in:
Lu Fei
2023-06-26 21:19:29 +08:00
committed by GitHub
parent 9e32ca8e9a
commit bf7eff4a9c
8 changed files with 8 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
<?php
PHP_SAPI == 'cli' or die("Please run this script using the cli sapi");
require_once __DIR__ . '/../autoload.php';
require_once __DIR__ . '/../src/autoload.php';
use phpweb\News\Entry;

View File

@@ -2,7 +2,7 @@
<?php
PHP_SAPI == 'cli' or die("Please run this script using the cli sapi");
require_once __DIR__ . '/../autoload.php';
require_once __DIR__ . '/../src/autoload.php';
use phpweb\News\Entry;