Skip to content

Commit

Permalink
Fix: Mark classes as experimental (#716)
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Sep 4, 2023
1 parent edb6523 commit e0c22fe
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Faker/Core/Coordinates.php
Expand Up @@ -6,6 +6,9 @@

use Faker\Extension;

/**
* @experimental This class is experimental and does not fall under our BC promise
*/
class Coordinates implements Extension\Extension
{
private Extension\NumberExtension $numberExtension;
Expand Down
3 changes: 3 additions & 0 deletions src/Faker/Core/Uuid.php
Expand Up @@ -4,6 +4,9 @@

use Faker\Extension;

/**
* @experimental This class is experimental and does not fall under our BC promise
*/
final class Uuid implements Extension\UuidExtension
{
private Extension\NumberExtension $numberExtension;
Expand Down
3 changes: 3 additions & 0 deletions src/Faker/Core/Version.php
Expand Up @@ -7,6 +7,9 @@
use Faker\Extension;
use Faker\Provider\DateTime;

/**
* @experimental This class is experimental and does not fall under our BC promise
*/
final class Version implements Extension\VersionExtension
{
private Extension\NumberExtension $numberExtension;
Expand Down

0 comments on commit e0c22fe

Please sign in to comment.