Skip to content

Commit 6e7696c

Browse files
committed
add omitted use Attribute with inheritance
1 parent 1f71327 commit 6e7696c

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

src/Ubiquity/attributes/items/router/Delete.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
namespace Ubiquity\attributes\items\router;
44

5+
use Attribute;
6+
57
/**
68
* Defines a route with the `delete` method
79
* Ubiquity\attributes\items\router$Post

src/Ubiquity/attributes/items/router/Get.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
namespace Ubiquity\attributes\items\router;
88

9+
use Attribute;
10+
911
/**
1012
* Defines a route with the `get` method
1113
* Ubiquity\attributes\items\router$Get

src/Ubiquity/attributes/items/router/Options.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
namespace Ubiquity\attributes\items\router;
44

5+
use Attribute;
6+
57
/**
68
* Defines a route with the `options` method
79
* Ubiquity\attributes\items\router$Options

src/Ubiquity/attributes/items/router/Patch.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
namespace Ubiquity\attributes\items\router;
44

5+
use Attribute;
6+
57
/**
68
* Defines a route with the `patch` method
79
* Ubiquity\attributes\items\router$Patch

src/Ubiquity/attributes/items/router/Post.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
namespace Ubiquity\attributes\items\router;
44

5+
use Attribute;
6+
57
/**
68
* Defines a route with the `post` method
79
* Ubiquity\attributes\items\router$Post

src/Ubiquity/attributes/items/router/Put.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
namespace Ubiquity\attributes\items\router;
44

5+
use Attribute;
6+
57
/**
68
* Defines a route with the `put` method
79
* Ubiquity\attributes\items\router$Put

0 commit comments

Comments
 (0)