Skip to content

Commit e341e8c

Browse files
committed
Cleanup since docblocks
1 parent b2331ac commit e341e8c

182 files changed

Lines changed: 1 addition & 461 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/Addresses/Repositories/SubdivisionRepository.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
* Craft's extension of the commerceguys/addressing SubdivisionRepository.
1313
* Its main purpose is to allow addition of data that's not returned by the commerceguys/addressing library,
1414
* like the GB counties data. It also triggers an event which allows developers to modify the subdivisions further.
15-
*
16-
* @since 6.0.0
1715
*/
1816
class SubdivisionRepository extends BaseSubdivisionRepository
1917
{

src/Announcement/Announcements.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
use Illuminate\Support\Facades\Auth;
1717
use yii\helpers\Markdown;
1818

19-
/**
20-
* @since 6.0.0
21-
*/
2219
#[Singleton]
2320
final readonly class Announcements
2421
{
@@ -52,8 +49,6 @@ public function push(string $heading, string $body, ?string $pluginHandle = null
5249

5350
/**
5451
* Returns any announcements for the logged-in user.
55-
*
56-
* @since 6.0.0
5752
*/
5853
public function get(): array
5954
{

src/Announcement/Models/Announcement.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
use Illuminate\Database\Eloquent\Factories\HasFactory;
1010
use Illuminate\Database\Eloquent\Relations\BelongsTo;
1111

12-
/**
13-
* @since 6.0.0
14-
*/
1512
class Announcement extends BaseModel
1613
{
1714
use HasFactory;

src/Component/Concerns/ConfigurableComponent.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
use Illuminate\Support\Facades\Event;
1212
use ReflectionProperty;
1313

14-
/**
15-
* @since 6.0.0
16-
*/
1714
trait ConfigurableComponent
1815
{
1916
use HasComponentEvents;

src/Component/Concerns/HasComponentEvents.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
use Illuminate\Events\QueuedClosure;
66
use Illuminate\Support\Facades\Event;
77

8-
/**
9-
* @since 6.0.0
10-
*/
118
trait HasComponentEvents
129
{
1310
/**

src/Component/Concerns/SavableComponent.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
use Illuminate\Events\QueuedClosure;
88
use Illuminate\Support\Facades\Event;
99

10-
/**
11-
* @since 6.0.0
12-
*/
1310
trait SavableComponent
1411
{
1512
use HasComponentEvents;

src/Component/Concerns/ValidatableComponent.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
use Illuminate\Support\Facades\Validator as ValidatorFacade;
88
use Illuminate\Validation\Validator;
99

10-
/**
11-
* @since 6.0.0
12-
*/
1310
trait ValidatableComponent
1411
{
1512
private ?Validator $validator = null;

src/Component/Contracts/ComponentInterface.php

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

55
/**
66
* ComponentInterface defines the common interface to be implemented by Craft component classes.
7-
*
8-
* @since 6.0.0
97
*/
108
interface ComponentInterface
119
{

src/Component/Contracts/ConfigurableComponentInterface.php

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

33
namespace CraftCms\Cms\Component\Contracts;
44

5-
/**
6-
* @since 6.0.0
7-
*/
85
interface ConfigurableComponentInterface
96
{
107
/**

src/Component/Contracts/SavableComponentInterface.php

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

33
namespace CraftCms\Cms\Component\Contracts;
44

5-
/**
6-
* @since 6.0.0
7-
*/
85
interface SavableComponentInterface extends ComponentInterface
96
{
107
public int|string|null $id { get; set; }

0 commit comments

Comments
 (0)