Skip to content
This repository was archived by the owner on Feb 10, 2021. It is now read-only.

Commit 5dc6c12

Browse files
committed
Merge branch 'release/1.0.2'
* release/1.0.2: Changelog for 1.0.2 Fixing another missing declaration
2 parents a31d0f2 + ed07ddd commit 5dc6c12

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

77

8+
## 1.0.2 - 2018-09-25
9+
10+
### Fixed
11+
- More Scrutinizer issue fixing
12+
13+
814
## 1.0.1 - 2018-09-25
915

1016
### Fixed

src/records/Target_SiteSettings.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace angellco\portal\records;
1212

13-
use angellco\portal\models\Target;
13+
use angellco\portal\models\Target as TargetModel;
1414

1515
use Craft;
1616
use craft\db\ActiveRecord;
@@ -24,7 +24,7 @@
2424
* @property int $targetId Target ID
2525
* @property int $siteId Site ID
2626
* @property string $template Template
27-
* @property Target $target Target
27+
* @property TargetModel $target Target
2828
* @property Site $site Site
2929
*
3030
* @author Angell & Co
@@ -52,7 +52,7 @@ public static function tableName(): string
5252
*/
5353
public function getGroup(): ActiveQueryInterface
5454
{
55-
return $this->hasOne(Target::class, [ 'id' => 'targetId' ]);
55+
return $this->hasOne(TargetModel::class, [ 'id' => 'targetId' ]);
5656
}
5757

5858
/**

0 commit comments

Comments
 (0)