Skip to content

Commit

Permalink
DEV: update CDA client factory namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
vinothkannans committed Nov 21, 2024
1 parent 0140281 commit b645a6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"autoload": {
"psr-4": {
"Vinkas\\Cda\\Server\\": "src/",
"Database\\Factories\\Cda\\Server\\": "database/factories/"
"Database\\Factories\\Vinkas\\Cda\\Server\\": "database/factories/"
}
},
"autoload-dev": {
Expand Down
2 changes: 1 addition & 1 deletion database/factories/ClientFactory.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Database\Factories\Cda\Server;
namespace Database\Factories\Vinkas\Cda\Server;

use Illuminate\Database\Eloquent\Factories\Factory;
use Vinkas\Cda\Server\Client;
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class Client extends Model
{
/** @use HasFactory<\Database\Factories\Cda\Server\ClientFactory> */
/** @use HasFactory<\Database\Factories\Vinkas\Cda\Server\ClientFactory> */
use HasFactory;

protected $table = 'cda_clients';
Expand Down

0 comments on commit b645a6d

Please sign in to comment.