Class file relocations

Issue #3878
This commit is contained in:
Adam Magness 2017-11-07 22:57:46 -05:00
parent 6189f6c8e7
commit 4ca68c7af0
151 changed files with 987 additions and 8742 deletions

View file

@ -73,7 +73,7 @@ If there are only a handful of references to a single non-namespaced class, just
````php
namespace Friendica\Core;
...
if (\dbm::is_result($r)) {
if (\DBM::is_result($r)) {
...
}
````
@ -82,7 +82,7 @@ namespace Friendica\Core;
use \dbm;
if (dbm::is_result($r)) {
if (DBM::is_result($r)) {
...
}
````