Lazy service injector PHPDocPHPDoc type hinting for array of objects?Reference — What does this symbol mean in PHP?Reference - What does this error mean in PHP?Best practice for sharing 3rd party dependency in Silex application?Creating link to template files in PHPStorm (maybe using PHPDoc?)Silex service - $app parameter or “use ($app)” statement?silex file structure for custom service providersPHPStorm type hinting subclasses of baseclassPhpDoc: describe protected method for traitSilex 2.0 Unable to pass the Application $app to a UserServiceProvider

Adding empty element to declared container without declaring type of element

Teaching indefinite integrals that require special-casing

How to deal with or prevent idle in the test team?

Is there a problem with hiding "forgot password" until it's needed?

Can I rely on these GitHub repository files?

How can I successfully establish a nationwide combat training program for a large country?

Invariance of results when scaling explanatory variables in logistic regression, is there a proof?

Indicating multiple different modes of speech (fantasy language or telepathy)

Why does this part of the Space Shuttle launch pad seem to be floating in air?

Are Warlocks Arcane or Divine?

Can a Gentile theist be saved?

Is exact Kanji stroke length important?

Why are on-board computers allowed to change controls without notifying the pilots?

In Star Trek IV, why did the Bounty go back to a time when whales were already rare?

Can the electrostatic force be infinite in magnitude?

Did US corporations pay demonstrators in the German demonstrations against article 13?

How can I raise concerns with a new DM about XP splitting?

Is it okay / does it make sense for another player to join a running game of Munchkin?

A workplace installs custom certificates on personal devices, can this be used to decrypt HTTPS traffic?

A known event to a history junkie

Is there an wasy way to program in Tikz something like the one in the image?

Taylor series of product of two functions

Golf game boilerplate

Simple image editor tool to draw a simple box/rectangle in an existing image



Lazy service injector PHPDoc


PHPDoc type hinting for array of objects?Reference — What does this symbol mean in PHP?Reference - What does this error mean in PHP?Best practice for sharing 3rd party dependency in Silex application?Creating link to template files in PHPStorm (maybe using PHPDoc?)Silex service - $app parameter or “use ($app)” statement?silex file structure for custom service providersPHPStorm type hinting subclasses of baseclassPhpDoc: describe protected method for traitSilex 2.0 Unable to pass the Application $app to a UserServiceProvider













0















I am looking for a solution to declare properly a lazy service injector for the PhpStorm IDE. Here is an example:



$app = new SilexApplication();

/**
* ???
*/
$app['file'] = function()
return new M_file();
;









share|improve this question
























  • As far as I know, you can't declare the type of each array element independently. One solution is assign the value to a new variable where you want to use it (in a controller class for example) and declare the type of that variable.

    – Nima
    Mar 21 at 15:25











  • Check Silex/Pimple related plugins, they may help. In general, Advanced Metadata is usually used for such stuff, but I don't think it work well with arrays (but does work with $app->get('someService') kind of stuff; Look at what IDE helper for Laravel generates, see github.com/barryvdh/laravel-ide-helper).

    – LazyOne
    Mar 21 at 15:35
















0















I am looking for a solution to declare properly a lazy service injector for the PhpStorm IDE. Here is an example:



$app = new SilexApplication();

/**
* ???
*/
$app['file'] = function()
return new M_file();
;









share|improve this question
























  • As far as I know, you can't declare the type of each array element independently. One solution is assign the value to a new variable where you want to use it (in a controller class for example) and declare the type of that variable.

    – Nima
    Mar 21 at 15:25











  • Check Silex/Pimple related plugins, they may help. In general, Advanced Metadata is usually used for such stuff, but I don't think it work well with arrays (but does work with $app->get('someService') kind of stuff; Look at what IDE helper for Laravel generates, see github.com/barryvdh/laravel-ide-helper).

    – LazyOne
    Mar 21 at 15:35














0












0








0








I am looking for a solution to declare properly a lazy service injector for the PhpStorm IDE. Here is an example:



$app = new SilexApplication();

/**
* ???
*/
$app['file'] = function()
return new M_file();
;









share|improve this question
















I am looking for a solution to declare properly a lazy service injector for the PhpStorm IDE. Here is an example:



$app = new SilexApplication();

/**
* ???
*/
$app['file'] = function()
return new M_file();
;






php phpstorm silex phpdoc pimple






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 21 at 15:32









LazyOne

110k21244266




110k21244266










asked Mar 21 at 14:53









Samuel ClabecqSamuel Clabecq

346




346












  • As far as I know, you can't declare the type of each array element independently. One solution is assign the value to a new variable where you want to use it (in a controller class for example) and declare the type of that variable.

    – Nima
    Mar 21 at 15:25











  • Check Silex/Pimple related plugins, they may help. In general, Advanced Metadata is usually used for such stuff, but I don't think it work well with arrays (but does work with $app->get('someService') kind of stuff; Look at what IDE helper for Laravel generates, see github.com/barryvdh/laravel-ide-helper).

    – LazyOne
    Mar 21 at 15:35


















  • As far as I know, you can't declare the type of each array element independently. One solution is assign the value to a new variable where you want to use it (in a controller class for example) and declare the type of that variable.

    – Nima
    Mar 21 at 15:25











  • Check Silex/Pimple related plugins, they may help. In general, Advanced Metadata is usually used for such stuff, but I don't think it work well with arrays (but does work with $app->get('someService') kind of stuff; Look at what IDE helper for Laravel generates, see github.com/barryvdh/laravel-ide-helper).

    – LazyOne
    Mar 21 at 15:35

















As far as I know, you can't declare the type of each array element independently. One solution is assign the value to a new variable where you want to use it (in a controller class for example) and declare the type of that variable.

– Nima
Mar 21 at 15:25





As far as I know, you can't declare the type of each array element independently. One solution is assign the value to a new variable where you want to use it (in a controller class for example) and declare the type of that variable.

– Nima
Mar 21 at 15:25













Check Silex/Pimple related plugins, they may help. In general, Advanced Metadata is usually used for such stuff, but I don't think it work well with arrays (but does work with $app->get('someService') kind of stuff; Look at what IDE helper for Laravel generates, see github.com/barryvdh/laravel-ide-helper).

– LazyOne
Mar 21 at 15:35






Check Silex/Pimple related plugins, they may help. In general, Advanced Metadata is usually used for such stuff, but I don't think it work well with arrays (but does work with $app->get('someService') kind of stuff; Look at what IDE helper for Laravel generates, see github.com/barryvdh/laravel-ide-helper).

– LazyOne
Mar 21 at 15:35













0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55283278%2flazy-service-injector-phpdoc%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55283278%2flazy-service-injector-phpdoc%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript