Skip to content

Commit

Permalink
CompanyIdentity: Basic definition.
Browse files Browse the repository at this point in the history
  • Loading branch information
janbarasek authored Feb 27, 2020
1 parent 5d37efe commit 6ec8c73
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/InteractiveComposer/CompanyIdentity.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php

declare(strict_types=1);

namespace Baraja\PackageManager\Composer;


/**
* Implementing class must be type of CompanyIdentity
* and name of class must end with "Identity" suffix.
*/
interface CompanyIdentity
{

/**
* Return unique company logo with some information.
*
* @return string
*/
public function getLogo(): string;

}

0 comments on commit 6ec8c73

Please sign in to comment.