Skip to content

Commit 9603432

Browse files
author
alexandresalome
committed
missed a class
1 parent 23cd98b commit 9603432

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

src/Gitonomy/Git/CommitReference.php

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
/**
4+
* This file is part of Gitonomy.
5+
*
6+
* (c) Alexandre Salomé <alexandre.salome@gmail.com>
7+
* (c) Julien DIDIER <genzo.wm@gmail.com>
8+
*
9+
* This source file is subject to the MIT license that is bundled
10+
* with this source code in the file LICENSE.
11+
*/
12+
13+
namespace Gitonomy\Git;
14+
15+
class CommitReference
16+
{
17+
private $hash;
18+
19+
public function __construct($hash)
20+
{
21+
$this->hash = $hash;
22+
}
23+
}

0 commit comments

Comments
 (0)