Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
67 | public function __construct(int $schema, string $name, string $tag, string $architecture, array $layers, array $history, array $signatures) |
||
68 | { |
||
69 | $this->schema = $schema; |
||
70 | $this->name = $name; |
||
71 | $this->tag = $tag; |
||
72 | $this->architecture = $architecture; |
||
73 | $this->layers = $layers; |
||
74 | $this->history = $history; |
||
75 | $this->signatures = $signatures; |
||
76 | } |
||
77 | |||
148 |