Skip to content

Commit 215d970

Browse files
committed
Commets improvements
1 parent d1d72f7 commit 215d970

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed

Setup/Patch/Data/CreateSamplePost.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ public function __construct(
4646
$this->scopeConfig = $scopeConfig;
4747
}
4848

49+
/**
50+
* {@inheritdoc}
51+
*/
4952
public function apply()
5053
{
5154
try {
@@ -67,18 +70,24 @@ public function apply()
6770
$this->_postFactory->create()->setData($data)->save();
6871
}
6972

73+
/**
74+
* {@inheritdoc}
75+
*/
7076
public static function getDependencies()
7177
{
7278
return[];
7379
}
7480

81+
/**
82+
* {@inheritdoc}
83+
*/
7584
public function getAliases()
7685
{
7786
return[];
7887
}
7988

8089
/**
81-
* @return string
90+
* {@inheritdoc}
8291
*/
8392
public static function getVersion()
8493
{

Setup/Patch/Data/TagInStore.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,29 +29,32 @@ public function __construct(
2929
}
3030

3131
/**
32-
* @return array|string[]
32+
* {@inheritdoc}
3333
*/
3434
public static function getDependencies()
3535
{
3636
return [];
3737
}
3838

3939
/**
40-
* @return array|string[]
40+
* {@inheritdoc}
4141
*/
4242
public function getAliases()
4343
{
4444
return [];
4545
}
4646

4747
/**
48-
* @return string
48+
* {@inheritdoc}
4949
*/
5050
public static function getVersion()
5151
{
5252
return '2.9.8';
5353
}
5454

55+
/**
56+
* {@inheritdoc}
57+
*/
5558
public function apply()
5659
{
5760
$connection = $this->resourceConnection->getConnection();

Setup/Patch/Data/UpdatePostCommentsCount.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function __construct(
3838
}
3939

4040
/**
41-
* @return void
41+
* {@inheritdoc}
4242
*/
4343
public function apply()
4444
{
@@ -54,23 +54,23 @@ public function apply()
5454
}
5555

5656
/**
57-
* @return array|string[]
57+
* {@inheritdoc}
5858
*/
5959
public static function getDependencies()
6060
{
6161
return [];
6262
}
6363

6464
/**
65-
* @return array|string[]
65+
* {@inheritdoc}
6666
*/
6767
public function getAliases()
6868
{
6969
return [];
7070
}
7171

7272
/**
73-
* @return string
73+
* {@inheritdoc}
7474
*/
7575
public static function getVersion()
7676
{

0 commit comments

Comments
 (0)