Page MenuHomePhorge

PhabricatorPasteSnippet.php
No OneTemporary

Size
618 B
Referenced Files
None
Subscribers
None

PhabricatorPasteSnippet.php

<?php
final class PhabricatorPasteSnippet extends Phobject {
const FULL = 'full';
const FIRST_LINES = 'first_lines';
const FIRST_BYTES = 'first_bytes';
private $content;
private $type;
private $contentLineCount;
public function __construct($content, $type, $content_line_count) {
$this->content = $content;
$this->type = $type;
$this->contentLineCount = $content_line_count;
}
public function getContent() {
return $this->content;
}
public function getType() {
return $this->type;
}
public function getContentLineCount() {
return $this->contentLineCount;
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, May 12, 8:31 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
110154
Default Alt Text
PhabricatorPasteSnippet.php (618 B)

Event Timeline