Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97215068
PhabricatorPasteSnippet.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Jan 3, 12:48
Size
618 B
Mime Type
text/x-php
Expires
Sun, Jan 5, 12:48 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23356340
Attached To
rPH Phabricator
PhabricatorPasteSnippet.php
View Options
<?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
;
}
}
Event Timeline
Log In to Comment