Coin: Code cleanup

This commit is contained in:
veselcraft 2022-05-23 16:13:02 +03:00
parent fb6c9d3963
commit 10040332ed
No known key found for this signature in database
GPG key ID: AED66BC1AC628A4E
3 changed files with 20 additions and 21 deletions

View file

@ -72,13 +72,13 @@ class FetchToncoinTransactions extends Command
$header->writeln("Gonna up the balance of users");
foreach($response["result"] as $transfer) {
$output_array;
preg_match('/' . OPENVK_ROOT_CONF["openvk"]["preferences"]["ton"]["regex"] . '/', $transfer["in_msg"]["message"], $output_array);
$userid = ctype_digit($output_array[1]) ? intval($output_array[1]) : NULL;
if(is_null($userid)) {
$outputArray;
preg_match('/' . OPENVK_ROOT_CONF["openvk"]["preferences"]["ton"]["regex"] . '/', $transfer["in_msg"]["message"], $outputArray);
$userId = ctype_digit($outputArray[1]) ? intval($outputArray[1]) : NULL;
if(is_null($userId)) {
$header->writeln("Well, that's a donation. Thanks! XD");
} else {
$user = (new Users)->get($userid);
$user = (new Users)->get($userId);
if(!$user) {
$header->writeln("Well, that's a donation. Thanks! XD");
} else {

View file

@ -273,7 +273,6 @@ final class WallPresenter extends OpenVKPresenter
try {
$post = new Post;
$post->setOwner($this->user->id);
$post->setWall($wall);
$post->setCreated(time());