Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OSE
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open-source
OSE
Commits
05407420
Commit
05407420
authored
Jan 30, 2019
by
Alexandre Zvenigorosky
Browse files
Options
Downloads
Patches
Plain Diff
Delete TypeModulateurStructureSaisieFormAwareTrait.php
parent
26dd9129
No related branches found
No related tags found
4 merge requests
!23
V8
,
!22
Modulateurs structures 2
,
!21
Modulateurs structures 2
,
!20
Modulateurs structures 2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
module/Application/src/Application/Form/Modulateur/traits/TypeModulateurStructureSaisieFormAwareTrait.php
+0
-49
0 additions, 49 deletions
...ur/traits/TypeModulateurStructureSaisieFormAwareTrait.php
with
0 additions
and
49 deletions
module/Application/src/Application/Form/Modulateur/traits/TypeModulateurStructureSaisieFormAwareTrait.php
deleted
100644 → 0
+
0
−
49
View file @
26dd9129
<?php
namespace
Application\Form\Modulateur\Traits
;
use
Application\Form\Modulateur\TypeModulateurStructureSaisieForm
;
/**
* Description of TypeModulateurStructureSaisieFormAwareTrait
*
* @author UnicaenCode
*/
trait
TypeModulateurStructureSaisieFormAwareTrait
{
/**
* @var TypeModulateurStructureSaisieForm
*/
private
$formTypeModulateurStructureSaisie
;
/**
* @param TypeModulateurStrucureSaisieForm $formTypeModulateurStructureSaisie
*
* @return self
*/
public
function
setFormTypeModulateurStructureSaisie
(
TypeModulateurStructureSaisieForm
$formTypeModulateurStructureSaisie
)
{
$this
->
formTypeModulateurStrucureSaisie
=
$formTypeModulateurStructureSaisie
;
return
$this
;
}
/**
* Retourne un nouveau formulaire ou fieldset systématiquement, sauf si ce dernier a été fourni manuellement.
*
* @return TypeModulateurStructureSaisieForm
*/
public
function
getFormTypeModulateurStructureSaisie
()
{
if
(
!
empty
(
$this
->
formTypeModulateurStructureSaisie
))
{
return
$this
->
formTypeModulateurStructureSaisie
;
}
return
\Application
::
$container
->
get
(
'FormElementManager'
)
->
get
(
TypeModulateurStructureSaisieForm
::
class
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment