Skip to content

Commit 3c52fd1

Browse files
committed
Fix: Move class into src/
1 parent 1e7a49e commit 3c52fd1

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

bin/createNewsEntry

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?php
33
PHP_SAPI == 'cli' or die("Please run this script using the cli sapi");
44

5-
require(__DIR__ . '/../include/news_entry.inc');
5+
require(__DIR__ . '/../src/news/Entry.php');
66
use phpweb\news\Entry;
77

88
$imageRestriction = [

bin/createReleaseEntry

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?php
33
PHP_SAPI == 'cli' or die("Please run this script using the cli sapi");
44

5-
require(__DIR__ . '/../include/news_entry.inc');
5+
require(__DIR__ . '/../src/news/Entry.php');
66
use phpweb\news\Entry;
77

88
if (!file_exists(Entry::ARCHIVE_FILE_ABS)) {
File renamed without changes.

0 commit comments

Comments
 (0)