mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
cs: Enable more risky rules.
This commit is contained in:
parent
6ce511889f
commit
579c349e28
@ -31,7 +31,7 @@ $riskyRules = [
|
||||
// 'comment_to_phpdoc' => false,
|
||||
// 'no_unset_on_property' => false,
|
||||
'strict_param' => false,
|
||||
'native_constant_invocation' => false,
|
||||
// 'native_constant_invocation' => false,
|
||||
'php_unit_test_annotation' => false,
|
||||
'php_unit_no_expectation_annotation' => false,
|
||||
'declare_strict_types' => false,
|
||||
@ -46,8 +46,8 @@ $riskyRules = [
|
||||
// 'array_push' => false,
|
||||
'ereg_to_preg' => false,
|
||||
'error_suppression' => false,
|
||||
'fopen_flag_order' => false,
|
||||
'fopen_flags' => false,
|
||||
// 'fopen_flag_order' => false,
|
||||
// 'fopen_flags' => false,
|
||||
// 'logical_operators' => false,
|
||||
// 'modernize_types_casting' => false,
|
||||
// 'no_homoglyph_names' => false,
|
||||
|
@ -18,7 +18,7 @@ use Symfony\Component\HttpFoundation\Request;
|
||||
// Feel free to remove this, extend it, or make something more sophisticated.
|
||||
if (isset($_SERVER['HTTP_CLIENT_IP'])
|
||||
|| isset($_SERVER['HTTP_X_FORWARDED_FOR'])
|
||||
|| !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1']) || PHP_SAPI === 'cli-server')
|
||||
|| !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1']) || \PHP_SAPI === 'cli-server')
|
||||
) {
|
||||
header('HTTP/1.0 403 Forbidden');
|
||||
|
||||
|
@ -15,6 +15,7 @@ use Chill\CustomFieldsBundle\Entity\CustomField;
|
||||
use Doctrine\Persistence\ObjectManager;
|
||||
use Symfony\Component\Form\DataTransformerInterface;
|
||||
use function array_key_exists;
|
||||
use const JSON_THROW_ON_ERROR;
|
||||
|
||||
class JsonCustomFieldToArrayTransformer implements DataTransformerInterface
|
||||
{
|
||||
|
@ -18,7 +18,7 @@ use Symfony\Component\HttpFoundation\Request;
|
||||
// Feel free to remove this, extend it, or make something more sophisticated.
|
||||
if (isset($_SERVER['HTTP_CLIENT_IP'])
|
||||
|| isset($_SERVER['HTTP_X_FORWARDED_FOR'])
|
||||
|| !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1']) || PHP_SAPI === 'cli-server')
|
||||
|| !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1']) || \PHP_SAPI === 'cli-server')
|
||||
) {
|
||||
header('HTTP/1.0 403 Forbidden');
|
||||
|
||||
|
@ -47,7 +47,7 @@ class DocGeneratorController extends AbstractController
|
||||
|
||||
unlink($tmpfname);
|
||||
|
||||
$fileContent = fopen($tmpfname2, 'r'); // the generated file content
|
||||
$fileContent = fopen($tmpfname2, 'rb'); // the generated file content
|
||||
$response = new Response(fread($fileContent, filesize($tmpfname2)));
|
||||
|
||||
$disposition = HeaderUtils::makeDisposition(
|
||||
|
@ -76,7 +76,7 @@ class DocGeneratorTemplateController extends AbstractController
|
||||
|
||||
unlink($tmpfname);
|
||||
|
||||
$fileContent = fopen($tmpfname2, 'r'); // the generated file content
|
||||
$fileContent = fopen($tmpfname2, 'rb'); // the generated file content
|
||||
|
||||
$genDocName = 'doc_' . sprintf('%010d', mt_rand()) . '.docx';
|
||||
|
||||
|
@ -21,6 +21,7 @@ use function array_keys;
|
||||
use function array_search;
|
||||
use function count;
|
||||
use function in_array;
|
||||
use const ARRAY_FILTER_USE_BOTH;
|
||||
|
||||
class CRUDRoutesLoader extends Loader
|
||||
{
|
||||
|
@ -196,7 +196,7 @@ class LoadPostalCodesCommand extends Command
|
||||
. 'have the right to read it.');
|
||||
}
|
||||
|
||||
$resource = fopen($filename, 'r');
|
||||
$resource = fopen($filename, 'rb');
|
||||
|
||||
if (false == $resource) {
|
||||
throw new RuntimeException("The file '{$filename}' could not be opened.");
|
||||
|
@ -228,7 +228,7 @@ class CSVFormatter implements FormatterInterface
|
||||
$content = [];
|
||||
|
||||
// create a file pointer connected to the output stream
|
||||
$output = fopen('php://output', 'w');
|
||||
$output = fopen('php://output', 'wb');
|
||||
|
||||
//title
|
||||
fputcsv($output, [$this->translator->trans($this->export->getTitle())]);
|
||||
|
@ -115,7 +115,7 @@ class CSVListFormatter implements FormatterInterface
|
||||
$this->exportData = $exportData;
|
||||
$this->formatterData = $formatterData;
|
||||
|
||||
$output = fopen('php://output', 'w');
|
||||
$output = fopen('php://output', 'wb');
|
||||
|
||||
$this->prepareHeaders($output);
|
||||
|
||||
|
@ -110,7 +110,7 @@ class CSVPivotedListFormatter implements FormatterInterface
|
||||
$this->exportData = $exportData;
|
||||
$this->formatterData = $formatterData;
|
||||
|
||||
$output = fopen('php://output', 'w');
|
||||
$output = fopen('php://output', 'wb');
|
||||
|
||||
$i = 1;
|
||||
$lines = [];
|
||||
|
@ -204,7 +204,7 @@ class SpreadSheetFormatter implements FormatterInterface
|
||||
$this->tempfile = tempnam(sys_get_temp_dir(), '');
|
||||
$this->generateContent();
|
||||
|
||||
$f = fopen($this->tempfile, 'r');
|
||||
$f = fopen($this->tempfile, 'rb');
|
||||
$response->setContent(stream_get_contents($f));
|
||||
fclose($f);
|
||||
|
||||
|
@ -199,7 +199,7 @@ class SpreadsheetListFormatter implements FormatterInterface
|
||||
$tempfile = tempnam(sys_get_temp_dir(), '');
|
||||
$writer->save($tempfile);
|
||||
|
||||
$f = fopen($tempfile, 'r');
|
||||
$f = fopen($tempfile, 'rb');
|
||||
$response->setContent(stream_get_contents($f));
|
||||
fclose($f);
|
||||
|
||||
|
@ -17,6 +17,8 @@ use Symfony\Component\Form\AbstractType;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
use Symfony\Component\HttpFoundation\RequestStack;
|
||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||
use const SORT_FLAG_CASE;
|
||||
use const SORT_STRING;
|
||||
|
||||
/**
|
||||
* Extends choice to allow adding select2 library on widget.
|
||||
|
@ -17,6 +17,8 @@ use Symfony\Component\Form\AbstractType;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
use Symfony\Component\HttpFoundation\RequestStack;
|
||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||
use const SORT_FLAG_CASE;
|
||||
use const SORT_STRING;
|
||||
|
||||
/**
|
||||
* Extends choice to allow adding select2 library on widget for languages (multiple).
|
||||
|
@ -15,6 +15,7 @@ use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
|
||||
use Symfony\Component\Security\Core\Authorization\Voter\Voter;
|
||||
use function get_class;
|
||||
use function in_array;
|
||||
use const E_USER_DEPRECATED;
|
||||
|
||||
/**
|
||||
* Voter for Chill software.
|
||||
|
@ -22,6 +22,7 @@ use function array_unique;
|
||||
use function array_values;
|
||||
use function count;
|
||||
use function ksort;
|
||||
use const PHP_INT_MAX;
|
||||
|
||||
/**
|
||||
* Utilities to compare date periods.
|
||||
|
@ -44,6 +44,8 @@ use function get_class;
|
||||
use function in_array;
|
||||
use function is_array;
|
||||
use function json_decode;
|
||||
use const JSON_PRETTY_PRINT;
|
||||
use const LC_TIME;
|
||||
|
||||
final class ImportPeopleFromCSVCommand extends Command
|
||||
{
|
||||
@ -771,7 +773,7 @@ final class ImportPeopleFromCSVCommand extends Command
|
||||
. 'have the right to read it.');
|
||||
}
|
||||
|
||||
$resource = fopen($filename, 'r');
|
||||
$resource = fopen($filename, 'rb');
|
||||
|
||||
if (false == $resource) {
|
||||
throw new RuntimeException("The file '{$filename}' could not be opened.");
|
||||
|
@ -41,6 +41,7 @@ use Symfony\Component\Validator\GroupSequenceProviderInterface;
|
||||
use UnexpectedValueException;
|
||||
use function count;
|
||||
use function in_array;
|
||||
use const SORT_REGULAR;
|
||||
|
||||
/**
|
||||
* AccompanyingPeriod Class.
|
||||
|
@ -13,6 +13,7 @@ namespace Chill\PersonBundle\EventListener;
|
||||
|
||||
use Chill\PersonBundle\Entity\Person;
|
||||
use Chill\PersonBundle\Entity\PersonAltName;
|
||||
use const MB_CASE_TITLE;
|
||||
|
||||
class PersonEventListener
|
||||
{
|
||||
|
@ -17,6 +17,8 @@ use Doctrine\ORM\EntityManagerInterface;
|
||||
use Symfony\Component\Form\AbstractType;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||
use const SORT_FLAG_CASE;
|
||||
use const SORT_STRING;
|
||||
|
||||
/**
|
||||
* A type to select the marital status.
|
||||
|
@ -18,7 +18,7 @@ use Symfony\Component\HttpFoundation\Request;
|
||||
// Feel free to remove this, extend it, or make something more sophisticated.
|
||||
if (isset($_SERVER['HTTP_CLIENT_IP'])
|
||||
|| isset($_SERVER['HTTP_X_FORWARDED_FOR'])
|
||||
|| !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1']) || PHP_SAPI === 'cli-server')
|
||||
|| !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1']) || \PHP_SAPI === 'cli-server')
|
||||
) {
|
||||
header('HTTP/1.0 403 Forbidden');
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user