RSS Git Download  Clone
Raw View History
Blames found: 2 Mode: php Binary: false


Hang on, we reloading big blames...
<?php namespace Git\Model; class Symlink { protected $mode; protected $name; protected $path; public function getMode() { return $this->mode; } public function setMode($mode) { $this->mode = $mode; } public function getName() { return $this->name; } public function setName($name) { $this->name = $name; } public function getPath() { return $this->path; } public function setPath($path) { $this->path = $path; }
}