This repository was archived by the owner on Feb 10, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The 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
Original file line number Diff line number Diff line change 1010
1111namespace angellco \portal \records ;
1212
13- use angellco \portal \models \Target ;
13+ use angellco \portal \models \Target as TargetModel ;
1414
1515use Craft ;
1616use craft \db \ActiveRecord ;
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 /**
You can’t perform that action at this time.
0 commit comments