Skip to content

Commit

Permalink
Add some annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Apr 5, 2024
1 parent a4032f9 commit f4f2970
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Build/BuildRegistry.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@

namespace Massive\Bundle\BuildBundle\Build;

/**
* @final
*/
class BuildRegistry
{
protected $builders = [];
Expand Down
3 changes: 3 additions & 0 deletions Build/BuilderContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;

/**
* @internal
*/
class BuilderContext
{
protected $input;
Expand Down
2 changes: 2 additions & 0 deletions Builder/VirtualBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
* dependencies on other builders.
*
* @author Daniel Leech <[email protected]>
*
* @final
*/
class VirtualBuilder implements BuilderInterface
{
Expand Down
3 changes: 3 additions & 0 deletions Command/BuildCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
use Symfony\Component\DependencyInjection\ContainerAwareInterface as SymfonyContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
* @final
*/
class BuildCommand extends Command
{
/**
Expand Down
2 changes: 2 additions & 0 deletions DependencyInjection/Compiler/BuilderPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
/**
* @author Daniel Leech <[email protected]>
*
* @final
*
* @internal
*/
class BuilderPass implements CompilerPassInterface
Expand Down
2 changes: 2 additions & 0 deletions DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
*
* To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html#cookbook-bundles-extension-config-class}
*
* @final
*
* @internal
*/
class Configuration implements ConfigurationInterface
Expand Down
2 changes: 2 additions & 0 deletions DependencyInjection/MassiveBuildExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
*
* To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html}
*
* @final
*
* @internal
*/
class MassiveBuildExtension extends Extension
Expand Down
3 changes: 3 additions & 0 deletions MassiveBuildBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;

/**
* @final
*/
class MassiveBuildBundle extends Bundle
{
public function build(ContainerBuilder $container): void
Expand Down

0 comments on commit f4f2970

Please sign in to comment.