1
0
mirror of https://github.com/danielstjules/Stringy.git synced 2025-08-26 22:44:34 +02:00

Start using PSR-4

This commit is contained in:
Daniel St. Jules
2014-02-11 23:04:11 -05:00
parent edaf567a13
commit b3e922c517
8 changed files with 12 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
<?php
$base = realpath(dirname(__FILE__) . '/../..');
require("$base/src/Stringy/StaticStringy.php");
$base = realpath(dirname(__FILE__) . '/..');
require("$base/src/StaticStringy.php");
use Stringy\StaticStringy as S;

View File

@@ -1,7 +1,7 @@
<?php
$base = realpath(dirname(__FILE__) . '/../..');
require("$base/src/Stringy/Stringy.php");
$base = realpath(dirname(__FILE__) . '/..');
require("$base/src/Stringy.php");
use Stringy\Stringy as S;