Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

Commit aa0b1e2

Browse files
Github Templates - DevKit updates (#54)
* DevKit updates * Apply fixes from StyleCI (#55) [ci skip] [skip ci]
1 parent 331fb91 commit aa0b1e2

File tree

11 files changed

+81
-0
lines changed

11 files changed

+81
-0
lines changed

.github/Bug_report.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Bug Report
3+
about: Report errors and problems
4+
5+
---
6+
7+
<!--
8+
The Symfony Code of Conduct applies to all the activity on this repository.
9+
See https://symfony.com/doc/current/contributing/code_of_conduct/index.html
10+
-->
11+
12+
**Description**
13+
<!-- A clear and concise description of the problem. -->
14+
15+
**How to reproduce**
16+
<!-- Code and/or config needed to reproduce the problem. If it's a complex bug,
17+
create a "bug reproducer" as explained in:
18+
https://symfony.com/doc/current/contributing/code/reproducer.html -->
19+
20+
**Possible Solution**
21+
<!--- Optional: only if you have suggestions on a fix/reason for the bug -->
22+
23+
**Additional context**
24+
<!-- Optional: any other context about the problem: log messages, screenshots, etc. -->

.github/Documentation_issue.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Documentation Issue
3+
about: Anything related to Symfony CMF Documentation
4+
5+
---
6+
7+
Symfony CMF Documentation has its own dedicated repository. Please open your
8+
documentation-related issue at https://github.com/symfony-cmf/symfony-cmf-docs/issues
9+
10+
Thanks!

.github/Feature_request.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: Feature Request
3+
about: RFC and ideas for new features and improvements
4+
5+
---
6+
7+
**Description**
8+
<!-- A clear and concise description of the new feature. -->
9+
10+
**Example**
11+
<!-- A simple example of the new feature in action (include PHP code, YAML config, etc.)
12+
If the new feature changes an existing feature, include a simple before/after comparison. -->

.github/Security_issue.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: Security Issue
3+
about: Report security-related errors
4+
5+
---
6+
7+
If you have found a security issue in Symfony, please send the details to
8+
[David](mailto:[email protected]) or [Maximilian](mailto:[email protected]) and don't disclose it publicly until we can provide a
9+
fix for it.

.github/Support_question.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Support Question
3+
about: Questions about using Symfony CMF and its components
4+
5+
---
6+
7+
**Description**
8+
<!-- A clear and concise description of the problem. -->
9+
10+
**How to reproduce (optional)**
11+
<!-- Optional: Only if you have something to reproduce. Code and/or config needed to reproduce the problem. -->
12+
13+
**Possible Solution**
14+
<!-- Optional: only if you have suggestions to solve it -->
15+

src/Registry/RepositoryRegistry.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,13 @@
2424
class RepositoryRegistry implements RepositoryRegistryInterface
2525
{
2626
private $container;
27+
2728
private $serviceMap = [];
29+
2830
private $typeMap = [];
31+
2932
private $names = [];
33+
3034
private $defaultRepositoryName;
3135

3236
/**

tests/Unit/DependencyInjection/CmfResourceExtensionTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
class CmfResourceExtensionTest extends \PHPUnit_Framework_TestCase
2525
{
2626
private $container;
27+
2728
private $extension;
29+
2830
private $repositoryFactory;
2931

3032
public function setUp()

tests/Unit/DependencyInjection/Compiler/DescriptionEnhancerPassTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
class DescriptionEnhancerPassTest extends \PHPUnit_Framework_TestCase
2121
{
2222
private $container;
23+
2324
private $factoryDefinition;
25+
2426
private $pass;
2527

2628
public function setUp()

tests/Unit/DependencyInjection/Repository/Factory/DoctrinePhpcrOdmFactoryTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
class DoctrinePhpcrOdmFactoryTest extends FactoryTestCase
2020
{
2121
private $session;
22+
2223
private $manager;
2324

2425
public function setUp()

tests/Unit/Registry/RepositoryRegistryTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
class RepositoryRegistryTest extends \PHPUnit_Framework_TestCase
1919
{
2020
private $repository;
21+
2122
private $container;
2223

2324
public function setUp()

0 commit comments

Comments
 (0)