Mark Oosting
Mark Oosting
**Type of PR:** Enhancement **PR checklist:** - [x] Addresses an existing issue: fixes #1005 - [ ] Includes tests - [ ] Documentation update **Overview of change:** This change will...
**Lightweight Charts Version:** 3.7.0 **Steps/code to reproduce:** - Add BaselineSeries - Set a custom price scale - Assign scaleMargins ```js var series = chart.addBaselineSeries({ priceScaleId: 'my-custom-scale', scaleMargins: { top: 0.8,...
Hi Jerome, Currently we have a minor issue with creating new post types, where we have to specify a new `Action()` in `BlogController`. Oftentimes, the methods are exactly the same,...
Hi again, Backstory: I was trying to modify my `BlogController`, spliting up our post type actions into multiple controllers (otherwise, the controllers tend to become quite large, having many different...
The current codebase is tightly coupled. For example, physics classes are using the (top-level) GUI layer. ## Examples ### RigidBody uses the `BaseScene` class The `addTo()` method is a neat...
There were only a few usages of the `Str::contains()` helper, we can easily replace these with a simple function. The change will also prevent other contributers from using illuminate code...
I've followed the README and created my entity as follows: ```php #[ORM\Column(type: 'easy_media_type', nullable: true)] private $image = null; public function getImage() { return $this->image; } public function setImage($image): static...