📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv3.demodesign.com.tr
/
vendor
/
lazyjsonmapper
/
lazyjsonmapper
📝
.php_cs.dist
← Geri Dön
<?php /* * Copyright 2017 The LazyJsonMapper Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ return PhpCsFixer\Config::create() ->setFinder( PhpCsFixer\Finder::create() ->in(__DIR__) ->name('/(?:^lazydoctor$|\.php$)/') ) ->setIndent(' ') ->setLineEnding("\n") ->setRules([ '@Symfony' => true, // Override @Symfony rules 'pre_increment' => false, 'blank_line_before_statement' => ['statements' => ['return', 'try', 'throw']], 'phpdoc_align' => ['tags' => ['param', 'throws']], 'method_argument_space' => ['ensure_fully_multiline' => false], 'binary_operator_spaces' => [ 'align_double_arrow' => true, 'align_equals' => false, ], 'phpdoc_annotation_without_dot' => false, 'yoda_style' => [ // Symfony writes their conditions backwards; we use normal order. 'equal' => false, 'identical' => false, 'less_and_greater' => false, ], 'is_null' => [ // Replaces all is_null() with === null. 'use_yoda_style' => false, ], // Custom rules 'align_multiline_comment' => true, 'phpdoc_add_missing_param_annotation' => ['only_untyped' => false], 'ordered_imports' => true, 'phpdoc_order' => true, 'array_syntax' => ['syntax' => 'short'], ]);
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula