Skip to content

Commit 01d39d2

Browse files
authoredAug 24, 2022
Fix many missing/wrong types (#1831)
1 parent 4488bf7 commit 01d39d2

File tree

196 files changed

+1293
-2542
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+1293
-2542
lines changed
 

‎.php-cs-fixer.dist.php

+1-9
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@
22

33
$finder = PhpCsFixer\Finder::create()
44
->in([__DIR__])
5-
->exclude([
6-
'cache',
7-
'build',
8-
'vendor',
9-
'js',
10-
]);
5+
->exclude(['vendor', 'js']);
116

127
return (new PhpCsFixer\Config())
138
->setRiskyAllowed(true)
@@ -49,9 +44,6 @@
4944
'no_superfluous_elseif' => false,
5045
'ordered_class_elements' => false,
5146
'php_unit_internal_class' => false,
52-
'php_unit_test_case_static_method_calls' => [
53-
'call_type' => 'this',
54-
],
5547
'php_unit_test_class_requires_covers' => false,
5648
'phpdoc_add_missing_param_annotation' => false,
5749
'return_assignment' => false,

‎README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ Agile UI is quickest way for building back-end UI, admin interfaces, data manage
1616
[![GitHub release](https://img.shields.io/github/release/atk4/ui.svg)](CHANGELOG.md)
1717
[![Code Climate](https://codeclimate.com/github/atk4/ui/badges/gpa.svg)](https://codeclimate.com/github/atk4/ui)
1818

19-
Quick-Links: [Documentation](https://agile-ui.readthedocs.io). [Namespaces](https://www.agiletoolkit.org/dox/namespaces.html). [Demo-site](https://ui.agiletoolkit.org). [ATK Data](https://github.com/atk4/data). [Forum](https://forum.agiletoolkit.org/). [Chat](https://gitter.im/atk4/atk4). [Commercial support](https://www.agiletoolkit.org/contact). [Udemy Course](https://forum.agiletoolkit.org/t/udemy-com-atk-course-early-access-limited-time-free/413).
20-
21-
Our localization is done using the amazing services of [Lokalise.com](https://www.lokalise.com) (Thanks)
19+
Quick-Links: [Documentation](https://agile-ui.readthedocs.io). [Demo-site](https://ui.agiletoolkit.org). [ATK Data](https://github.com/atk4/data). [Forum](https://forum.agiletoolkit.org/). [Chat](https://gitter.im/atk4/atk4). [Commercial support](https://www.agiletoolkit.org/contact).
2220

2321
## How does Agile Toolkit work?
2422

0 commit comments

Comments
 (0)