質問編集履歴
1
コードのインデントを修正しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -59,11 +59,11 @@
|
|
59
59
|
配下のクラスでif文の条件にしようとしています
|
60
60
|
|
61
61
|
```PHP
|
62
|
-
|
62
|
+
$unfollow_check = makeUnfollowCheckClass::makeUnfollowCheck($twitterToken->twitter_account_id, $targetId);
|
63
|
-
|
63
|
+
Log::debug($unfollow_check);
|
64
|
-
|
64
|
+
if ($unfollow_check->is(UnfollowFlg::getValue('アンフォロー対象'))) {
|
65
|
+
Log::debug('到達確認');
|
65
|
-
|
66
|
+
self::callUnfollowApi($twitter, $unfollowJob->id, $targetId, $twitterToken->twitter_account_id);
|
66
|
-
Log::debug('到達確認');
|
67
67
|
}
|
68
68
|
```
|
69
69
|
Log::debug($unfollow_check);
|