for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* PHP version 7.1
*
* This source file is subject to the license that is bundled with this package in the file LICENSE.
*/
namespace PhUml\Graphviz\Builders;
use PhUml\Code\ClassDefinition;
* Null object pattern implementation of `AssociationsBuilder`
* This class is used when the user ran the `phuml:diagram` command without the `associations` option.
* Which means that no associations should be discovered
class NoAssociationsBuilder implements AssociationsBuilder
{
public function attributesAssociationsFrom(ClassDefinition $class): array
return [];
}
public function parametersAssociationsFom(ClassDefinition $class): array