Skip to content

Commit

Permalink
Fix up gitattributes
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Mar 11, 2024
1 parent 66b6472 commit b04c612
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Expand Up @@ -7,10 +7,10 @@

# Remove files for archives generated using `git archive`
phpunit.xml.dist export-ignore
.travis.yml export-ignore
.gitignore export-ignore
.gitattributes export-ignore
.editorconfig export-ignore
tests/test_app export-ignore
tests/test_files export-ignore
tests/bootstrap.php export-ignore
.github/ export-ignore
1 change: 0 additions & 1 deletion templates/bake/Plugin/.gitattributes.twig
Expand Up @@ -10,6 +10,5 @@
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore
phpunit.xml.dist export-ignore
tests/test_app export-ignore
10 changes: 2 additions & 8 deletions tests/bootstrap.php
Expand Up @@ -70,15 +70,9 @@ class_alias(View::class, 'App\View\AppView');
class_alias(UsersTable::class, 'App\Model\Table\UsersTable');
class_alias(User::class, 'App\Model\Entity\User');

mb_internal_encoding('UTF-8');

class_alias(Application::class, 'App\Application');
if (!class_exists('App\Controller\AppController')) {
class_alias(AppController::class, 'App\Controller\AppController');
}
if (!class_exists('App\View\AppView')) {
class_alias(View::class, 'App\View\AppView');
}

mb_internal_encoding('UTF-8');

$Tmp = new Folder(TMP);
$Tmp->create(TMP . 'cache/models', 0770);
Expand Down

0 comments on commit b04c612

Please sign in to comment.