Move to DNW namespace

This commit is contained in:
Alex Wulf
2022-07-05 15:33:34 +02:00
parent a99a73e02c
commit 812e454dd4
77 changed files with 536 additions and 361 deletions

View File

@@ -1,11 +1,11 @@
<?php namespace Moserware\Skills;
<?php namespace DNW\Skills;
class Team extends RatingContainer
{
public function __construct(Player $player = null, Rating $rating = null)
{
parent::__construct();
if(!is_null($player))
{
$this->addPlayer($player, $rating);
@@ -16,5 +16,5 @@ class Team extends RatingContainer
{
$this->setRating($player, $rating);
return $this;
}
}
}