Merge pull request #12188 from frederic34/donotignoreblanklines

do not ignore lines with mix od tabs and spaces
This commit is contained in:
Laurent Destailleur 2019-10-20 21:26:14 +02:00 committed by GitHub
commit 2193e4b041
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
30 changed files with 57 additions and 57 deletions

View File

@ -201,7 +201,7 @@
<!-- There MUST NOT be trailing whitespace at the end of non-blank lines. --> <!-- There MUST NOT be trailing whitespace at the end of non-blank lines. -->
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace"> <rule ref="Squiz.WhiteSpace.SuperfluousWhitespace">
<properties> <properties>
<property name="ignoreBlankLines" value="true"/> <property name="ignoreBlankLines" value="false"/>
</properties> </properties>
</rule> </rule>
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace.StartFile"> <rule ref="Squiz.WhiteSpace.SuperfluousWhitespace.StartFile">

View File

@ -72,10 +72,10 @@ class Thirdparties extends DolibarrApi
* *
* @throws RestException * @throws RestException
*/ */
public function get($id) public function get($id)
{ {
return $this->_fetch($id); return $this->_fetch($id);
} }
/** /**
* Get properties of a thirdparty object by email. * Get properties of a thirdparty object by email.