-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.txt
executable file
·78 lines (61 loc) · 2.2 KB
/
test.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
What is the language used?
<div class="page-head">
<h2 class="">@if(isset($item->title)){{$item->title}}@endif</h2>
</div>
–––––––––––––––––––––––––––––
–––––––––––––––––––––––––––––
What is the language used?
What is "isotope()"?
Is there any issue in the code or potential problem?
$('.row_event').isotope({
layoutMode: 'packery',
packery: {
columnWidth: '.isotope',
},
percentPosition: true
});
–––––––––––––––––––––––––––––
–––––––––––––––––––––––––––––
What is the language used?
Where is it used?
What "void" means?
/**
* This method displays the given quantity value on the screen.
*/
private void display(int number) {
TextView quantityTextView = (TextView) findViewById(
R.id.quantity_text_view);
quantityTextView.setText("" + number);
}
–––––––––––––––––––––––––––––
–––––––––––––––––––––––––––––
What is the language used?
What is it?
What means $end = null ?
What means !== ?
public function ersDate($start, $end = null)
{
$startDate = new \DateTime($start);
$start = Carbon::instance($startDate);
if($end !== null){
$endDate = new \DateTime($end);
$end = Carbon::instance($endDate);
return $start->day.'-'.$end->day.' '.$end->format('F').', '.$end->year;
}
return $start->day.' '.$start->format('F').', '.$start->year;
}
–––––––––––––––––––––––––––––
–––––––––––––––––––––––––––––
What is the language used?
What is it?
interface TokenStorageInterface
{
/**
* @return mixed
*/
public function read();
/**
* @param array $content
* @return mixed
*/
public function write(array $content);