Completed
Pull Request — 1.1 (#3)
by Raphaël
02:24
created
src/ZohoDatabaseSyncZoho.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,6 @@
 block discarded – undo
7 7
 use Psr\Log\NullLogger;
8 8
 use Wabel\Zoho\CRM\AbstractZohoDao;
9 9
 use Wabel\Zoho\CRM\ZohoBeanInterface;
10
-use Wabel\Zoho\CRM\Exception\ZohoCRMException;
11
-use Wabel\Zoho\CRM\Exception\ZohoCRMResponseException;
12 10
 use function Stringy\create as s;
13 11
 
14 12
 /**
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -102,9 +102,9 @@
 block discarded – undo
102 102
                         if (in_array($columnName,['id','uid'])) {
103 103
                             continue;
104 104
                         }else{
105
-                           if($columnValue){
106
-                               $zohoBean->{$fieldsMatching[$columnName]['setter']}($columnValue);
107
-                           }
105
+                            if($columnValue){
106
+                                $zohoBean->{$fieldsMatching[$columnName]['setter']}($columnValue);
107
+                            }
108 108
                         }
109 109
 
110 110
                     }
Please login to merge, or discard this patch.