Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for WordPress Multisite #101

Open
wants to merge 10 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Next Next commit
refactor(multisite): change namespace of multisite models
  • Loading branch information
rafaucau committed Dec 18, 2024
commit 37be6a3a2260e509e120076de9728604f74eb899
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Author: Dimitri BOUTEILLE <bonjour@dimitri-bouteille.fr>
*/

namespace Dbout\WpOrm\Models\Network;
namespace Dbout\WpOrm\Models\Multisite;

use Carbon\Carbon;
use Dbout\WpOrm\Orm\AbstractModel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Author: Dimitri BOUTEILLE <bonjour@dimitri-bouteille.fr>
*/

namespace Dbout\WpOrm\Models\Network;
namespace Dbout\WpOrm\Models\Multisite;

use Carbon\Carbon;
use Dbout\WpOrm\Orm\AbstractModel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Author: Dimitri BOUTEILLE <bonjour@dimitri-bouteille.fr>
*/

namespace Dbout\WpOrm\Models\Network;
namespace Dbout\WpOrm\Models\Multisite;

use Carbon\Carbon;
use Dbout\WpOrm\Orm\AbstractModel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Author: Dimitri BOUTEILLE <bonjour@dimitri-bouteille.fr>
*/

namespace Dbout\WpOrm\Models\Network;
namespace Dbout\WpOrm\Models\Multisite;

use Carbon\Carbon;
use Dbout\WpOrm\Models\User;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Author: Dimitri BOUTEILLE <bonjour@dimitri-bouteille.fr>
*/

namespace Dbout\WpOrm\Models\Network;
namespace Dbout\WpOrm\Models\Multisite;

use Dbout\WpOrm\Concerns\HasMetas;
use Dbout\WpOrm\MetaMappingConfig;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Author: Dimitri BOUTEILLE <bonjour@dimitri-bouteille.fr>
*/

namespace Dbout\WpOrm\Models\Network;
namespace Dbout\WpOrm\Models\Multisite;

use Dbout\WpOrm\Models\Meta\AbstractMeta;
use Illuminate\Database\Eloquent\Relations\HasOne;
Expand Down
Loading