You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generated PHP code of the SynchronizerInterface interface and Synchronizer implementation:
interface SynchronizerInterface
{
/**
*
*/
public function synchronize();
}
class Synchronizer implements SynchronizerInterface
{
/** @var [object Object][] */
private array $synchronizers;
/**
* @param [object Object][] $synchronizers
*/
public function __construct([object Object] $synchronizers = [])
{
// TODO implement here
}
/**
* @param [object Object] $synchronizer
*/
public function add([object Object] $synchronizer)
{
// TODO implement here
}
/**
*
*/
public function synchronize()
{
// TODO implement here
}
}
The text was updated successfully, but these errors were encountered:
Hey, thank you for reporting this. I think it is a bug :)
Did the bug template not show up for you? Could you reformat it like in the template and send me an example file as described?
Describe the bug
A clear and concise description of what the bug is.
Attach the .mdj file
To reproduce the problem it's best to attach the .mdj file where the problem appears. Else I might not be able to reproduce it and won't be able to solve the problem.
You can also try and create a blank one and reproduce it there, so you won't need to send me your evil world takeover UML plans.
To Reproduce
Steps to reproduce the behavior:
Go to '...'
Click on '....'
Scroll down to '....'
See error
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.
Type hints don't get the class names but instead [object Object]. Is this a bug, or am I doing something wrong?
Here's an example.
Class diagram:
Generated PHP code of the SynchronizerInterface interface and Synchronizer implementation:
The text was updated successfully, but these errors were encountered: